Finalized profile flow, setup status bar color, and add some improvement

This commit is contained in:
Mochammad Adhi Buchori
2025-04-19 14:04:34 +07:00
parent ef2bc641ac
commit 608e03558d
25 changed files with 901 additions and 92 deletions

View File

@ -11,6 +11,8 @@ import EditProfileScreen from '../screens/editProfile';
import CloseAccountScreen from '../screens/closeAccount';
import {RootStackParamList} from './type';
import TermsAndConnditionsScreen from '../screens/termsAndConditions';
import NavigationRouteScreen from '../screens/navigationRoute';
import SetPasswordScreen from '../screens/setPassword';
const Stack = createNativeStackNavigator<RootStackParamList>();
@ -37,6 +39,11 @@ function RootStack() {
component={TermsAndConnditionsScreen}
options={{headerShown: false}}
/>
<Stack.Screen
name="NavigationRoute"
component={NavigationRouteScreen}
options={{headerShown: false}}
/>
<Stack.Screen
name="Home"
component={HomeScreen}
@ -67,6 +74,11 @@ function RootStack() {
component={CloseAccountScreen}
options={{headerShown: false}}
/>
<Stack.Screen
name="SetPassword"
component={SetPasswordScreen}
options={{headerShown: false}}
/>
</Stack.Navigator>
);
}