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