我想在上面显示FlatList数据,然后按每个数据以打开详细视图。它适用于iOS,但不适用于Android。
run:
Type nine float numbers two-dimensional array of similar type and size with line breaks, end
by"-1":
1.513
2.321
3.421
4.213
5.432
6.123
7.214
8.213
9.213
-1
The result is:
1.513 2.321 3.421
4.213 5.432 6.123
7.214 8.213 9.213
BUILD SUCCESSFUL (total time: 11 second)
答案 0 :(得分:0)
仅一个TouchableOpacity就足够了:
return (
<ScrollView style={{flex:1, width:'100%', shadowRadius: 4.65,elevation: 10, borderWidth:1, borderColor:'#ccc', margin:0, padding:0, borderRadius:10,marginTop:30, backgroundColor:'#fff', }}>
<Text style={styles.SectionHeaderStyle}>{item.title}</Text>
{allcat}
</ScrollView>
);
答案 1 :(得分:0)
检查您是否没有使用 react-native-gesture-handler 而不是 react-native 的 TouchableOpacity。