<FlatList
data={[{y: 'a'}, {z: 'b'}]}
renderItem={({item}) => <Text></Text>}
/>
here I'm using x
and y
as timestamp
and I need to get this timestamp and the timestamp value.
<FlatList
data={[{y: 'a'}, {z: 'b'}]}
renderItem={({item}) => <Text></Text>}
/>
here I'm using x
and y
as timestamp
and I need to get this timestamp and the timestamp value.