Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Android nav animation #194

Merged
merged 3 commits into from
Jun 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/navigators/AppNavigator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const AppStack = observer(function AppStack() {
} = useStores()

return (
<Stack.Navigator screenOptions={{ headerShown: false }}>
<Stack.Navigator screenOptions={{ headerShown: false, animation: "slide_from_right" }}>
{isLoggedIn ? (
<>
<Stack.Screen name="Tabs" component={TabNavigator} />
Expand Down
5 changes: 4 additions & 1 deletion app/navigators/AuthNavigator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ const Stack = createNativeStackNavigator<AuthStackParamList>()

export const AuthNavigator = () => {
return (
<Stack.Navigator initialRouteName="Home" screenOptions={{ headerShown: false }}>
<Stack.Navigator
initialRouteName="Home"
screenOptions={{ headerShown: false, animation: "slide_from_right" }}
>
<Stack.Screen name="Home" component={HomeScreen} />
<Stack.Screen name="Login" component={LoginScreen} />
<Stack.Screen name="CreateAccount" component={CreateAccountScreen} />
Expand Down
2 changes: 1 addition & 1 deletion app/screens/EditProfileScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export const EditProfileScreen: FC<EditProfileScreenProps> = observer(function E
>
{({ handleChange, handleBlur, submitForm, values }) => (
<View>
<Text text="Update Profile" preset="heading" size="xl" style={$title} />
<Text text="Update Profile" preset="subheading" size="xl" style={$title} />
<TextField
label="Display Name"
style={$input}
Expand Down
2 changes: 1 addition & 1 deletion ios/arcade/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>67</string>
<string>68</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false />
<key>LSRequiresIPhoneOS</key>
Expand Down