fix config

This commit is contained in:
CHIEFSOFT\ameye
2024-08-30 03:43:42 -04:00
parent 98b42ac0a3
commit d15d1f8af0
3 changed files with 29 additions and 23 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
import { Stack, useNavigation } from 'expo-router';
import { ImageBackground, StyleSheet, Button, TextInput, Text, View ,Image,Alert } from 'react-native';
import { ImageBackground, StyleSheet, Button, TextInput, SafeAreaView, Text, View ,Image,Alert } from 'react-native';
import { useEffect,useState } from 'react';
const Home =()=> {
@@ -10,7 +10,7 @@ const Home =()=> {
return (
<View style={styles.container}>
<SafeAreaView style={styles.container}>
<ImageBackground source={image} resizeMode="cover" style={styles.image}>
<View style={styles.login_box}>
<Image
@@ -44,7 +44,7 @@ const Home =()=> {
</View>
</ImageBackground>
</View>
</SafeAreaView>
);
}