How To Use Full Screen background Image In React Native app

How To Use Full Screen background Image In React Native app

Full screen background image in React Native app app.js code import {ImageBackground,, SafeAreaView, StyleSheet, ScrollView, View, Text, Alert, Image, StatusBar, TextInput, Button, FlatList,} from ‘react-native’; const image = { uri: “https://reactjs.org/logo-og.png” }; return ( <ImageBackground source={image} style={styles.image}> <ScrollView style={styles.scrollView}> <View style={{ flex: 1, justifyContent: ‘center’, alignItems: ‘center’, marginTop: 20, }}> <Image style={{ width: 100, height: … Read more