Skip to content

Commit

Permalink
design(fix): hide header shadow
Browse files Browse the repository at this point in the history
  • Loading branch information
vijaygojiya committed Nov 1, 2024
1 parent 4875955 commit 44e2311
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/router/AppNavigator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ const AppNavigator = () => {
<AppStack.Screen
options={{
headerShown: true,
headerShadowVisible: false,
headerTitleStyle: [
styles.appBarTitle,
{color: colors.neutral90},
Expand All @@ -84,6 +85,16 @@ const AppNavigator = () => {
component={SettingScreen}
/>
<AppStack.Screen
options={{
headerShown: true,
headerShadowVisible: false,
headerTitleStyle: [
styles.appBarTitle,
{color: colors.neutral90},
],
title: 'Profile',
headerBackTitle: 'Back',
}}
name={Routes.UserProfile}
component={UserProfileScreen}
/>
Expand Down

0 comments on commit 44e2311

Please sign in to comment.