import React from "react"; import { View, StyleSheet, Dimensions, ScrollView } from "react-native"; import data from "./data"; import Identifier from "./components/Identifier"; // Within your render function function Home() { return ( {data?.map((item, i) => ( ))} ); } // Later on in your styles.. const styles = StyleSheet.create({ contentContainerStyle: { paddingBottom: 50 }, container: { width: Dimensions.get("window").width, backgroundColor: "white", flexDirection: "column", padding: 5, } }); export default Home;