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