使用FlatList Animated查看本机

时间:2018-08-28 08:55:41

标签: react-native react-native-android react-native-ios react-native-flatlist

我实现如下。

我尝试实现它,以便在单击某个项目时将其滑动到左侧。

<FlatList
 data={...}
 renderItem={({item, separators}) => (
  <View>
   <Animated.View>
    <TouchableHighlight>
    ...
   </Animated.View>
  </View>
 keyExtractor={(item, index) => index.toString()}/>

但是,如果单击一项,所有内容都会滑动。

0 个答案:

没有答案