import React from 'react'; import {Text, ViewStyle, StyleSheet} from 'react-native'; import {$Colors} from './style'; export type FinishedProps = { show?: boolean; title?: string; style?: ViewStyle; }; const Finished: React.FC = ({show = true, title = '没有更多了~', style}) => { return show ? {title} : null; }; export default Finished; const styles = StyleSheet.create({ text: { textAlign: 'center', color: $Colors.lighterText, padding: 5, marginBottom: 10, }, });