Refactor multiple screens to replace SafeAreaView imports with react-native-safe-area-context, enhancing layout consistency across the application.

This commit is contained in:
Mekan1206
2025-09-17 14:55:18 +05:00
parent 388d5e9a82
commit 0d12a01812
27 changed files with 53 additions and 29 deletions

View File

@@ -3,7 +3,6 @@ import {
View,
Text,
StyleSheet,
SafeAreaView,
KeyboardAvoidingView,
ScrollView,
Platform,
@@ -11,6 +10,7 @@ import {
TouchableWithoutFeedback,
Keyboard,
} from 'react-native';
import { SafeAreaView } from 'react-native-safe-area-context';
import { StatusBar } from 'expo-status-bar';
import { useAuth } from '../../contexts/AuthContext';
import Button from '../../components/Button';