ThemesConfig.js 500 B

12345678910111213141516171819202122
  1. import React from "react";
  2. import { View } from "react-native";
  3. export const MyRefreshProps = () => ({
  4. title: global.$t('common.pulldown2Refresh'),
  5. titleColor: textCancel,
  6. colors: [colorAccent, colorPrimary],
  7. tintColor: colorAccent
  8. })
  9. export const UploadThemes = {
  10. cropperStatusBarColor: colorPrimary,
  11. cropperToolbarColor: colorPrimary,
  12. cropperActiveWidgetColor: colorAccent,
  13. cropperToolbarWidgetColor: pageTitleTint
  14. }
  15. export const TestThemes = () => {
  16. return (
  17. <View/>
  18. )
  19. }