I want to have a vertical list of cards in my React Native app using react-native-paper
. I'll be using the <Card>
component that is part of react-native-paper
.
Should I wrap the cards in a <FlatList>
or the <List>
component that is part of react-native-paper
? I'm not sure exactly what the <List>
component in react-native-paper
corresponds to and whether it would be beneficial to use it to get better results both in Android
and iOS
.
` in `react-native-paper`? I'm trying to educate myself a bit more on the purpose and use cases of the `
` component. After all the purpose of `react-native-paper` and libraries like that is to help developers produce code that is compatible with both Android and iOS out of the box. Otherwise we'd have to get involved with the intricate details of both platforms.