【发布时间】:2021-09-01 18:46:47
【问题描述】:
【问题讨论】:
-
寻找 react 原生轮播库。
标签: react-native react-native-ios react-native-flatlist
【问题讨论】:
标签: react-native react-native-ios react-native-flatlist
这是您想要的简单版本。
const App = () => {
const ages = new Array(100).fill(0);
return <FlatList
data={ages}
horizontal
renderItem={({index}) => <View style={{marginHorizontal: 10}}><Text>{index + 1}</Text></View>}
/>
}
【讨论】: