1import React from 'react'; 2import {StyleSheet, View} from 'react-native'; 3import rpx from '@/utils/rpx'; 4import ThemeText from './themeText'; 5 6 7export default function ListReachEnd() { 8 return ( 9 <View style={style.wrapper}> 10 <ThemeText fontSize='content' fontColor='secondary'>~~~ 到底啦 ~~~</ThemeText> 11 </View> 12 ); 13} 14 15const style = StyleSheet.create({ 16 wrapper: { 17 width: '100%', 18 flex: 1, 19 minHeight: rpx(100), 20 justifyContent: 'center', 21 alignItems: 'center', 22 }, 23}); 24