Finalized profile flow, setup status bar color, and add some improvement
This commit is contained in:
@ -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>
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user