xref: /MusicFree/src/components/base/listReachEnd.tsx (revision 277c528005b29b919b3eda695ee03717976a5a83)
121f1ca13S猫头猫import React from 'react';
221f1ca13S猫头猫import {StyleSheet, View} from 'react-native';
321f1ca13S猫头猫import rpx from '@/utils/rpx';
421f1ca13S猫头猫import ThemeText from './themeText';
521f1ca13S猫头猫
621f1ca13S猫头猫export default function ListReachEnd() {
721f1ca13S猫头猫    return (
821f1ca13S猫头猫        <View style={style.wrapper}>
9*277c5280S猫头猫            <ThemeText fontSize="content" fontColor="textSecondary">
104060c00aS猫头猫                ~~~ 到底啦 ~~~
114060c00aS猫头猫            </ThemeText>
1221f1ca13S猫头猫        </View>
1321f1ca13S猫头猫    );
1421f1ca13S猫头猫}
1521f1ca13S猫头猫
1621f1ca13S猫头猫const style = StyleSheet.create({
1721f1ca13S猫头猫    wrapper: {
1821f1ca13S猫头猫        width: '100%',
1921f1ca13S猫头猫        flex: 1,
2021f1ca13S猫头猫        minHeight: rpx(100),
2121f1ca13S猫头猫        justifyContent: 'center',
2221f1ca13S猫头猫        alignItems: 'center',
2321f1ca13S猫头猫    },
2421f1ca13S猫头猫});
25