| 12345678910111213141516171819202122 |
- import React from "react";
- import { View } from "react-native";
- export const MyRefreshProps = () => ({
- title: global.$t('common.pulldown2Refresh'),
- titleColor: textCancel,
- colors: [colorAccent, colorPrimary],
- tintColor: colorAccent
- })
- export const UploadThemes = {
- cropperStatusBarColor: colorPrimary,
- cropperToolbarColor: colorPrimary,
- cropperActiveWidgetColor: colorAccent,
- cropperToolbarWidgetColor: pageTitleTint
- }
- export const TestThemes = () => {
- return (
- <View/>
- )
- }
|