import React from 'react'; import {StyleSheet, View} from 'react-native'; import rpx from '@/utils/rpx'; import { ActivityIndicator, useTheme } from 'react-native-paper'; import { fontWeightConst } from '@/constants/uiConst'; import ThemeText from './themeText'; interface ILoadingProps {} export default function Loading(props: ILoadingProps) { const {colors} = useTheme(); return ( 加载中... ); } const style = StyleSheet.create({ wrapper: { width: '100%', flex: 1, justifyContent: 'center', alignItems: 'center', }, img: { width: rpx(200), height: rpx(200), }, text: { fontWeight: fontWeightConst.bold, marginTop: rpx(48), }, });