is there any reason why it's not support FlatList yet ?
@kubido The List component is just a wrapper with some styling around the children. Actually, you can use it with everything you want, not just a list. So yes, you can use it with a FlatList doing the following:
<List>
<FlatList
…
/>
</List>
It could be better to use <FlatList> instead of <ListView> as the latter one is deprecated now.
@lijunle He is using <List> component not <ListView />
Most helpful comment
@kubido The
Listcomponent is just a wrapper with some styling around the children. Actually, you can use it with everything you want, not just a list. So yes, you can use it with aFlatListdoing the following: