Exemplo SectionList
import { SectionList, Text } from 'react-native'
export default function App() {
const dados = [
{
title: 'Frutas',
data: ['Maçã', 'Banana', 'Laranja']
},
{
title: 'Bebidas',
data: ['Água', 'Suco', 'Refrigerante']
}
]
return (
<SectionList
sections={dados}
keyExtractor={(item, index) => index}
renderItem={({ item }) => <Text>{item}</Text>}
renderSectionHeader={({ section }) => (
<Text>{section.title}</Text>
)}
/>
)
}