import React from 'react'; import {ActivityIndicator, StyleSheet, View} from 'react-native'; import rpx from '@/utils/rpx'; import {fontSizeConst} from '@/constants/uiConst'; import ThemeText from './themeText'; import useColors from '@/hooks/useColors'; export default function ListLoading() { const colors = useColors(); return ( 加载中... ); } const style = StyleSheet.create({ wrapper: { width: '100%', height: rpx(140), justifyContent: 'center', alignItems: 'center', }, loadingText: { marginTop: fontSizeConst.content * 1.2, }, });