-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Onboarding fixes #40688
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
Onboarding fixes #40688
Changes from all commits
2e68cfb
f06b9d9
0ef0b24
7ee2d7a
b129552
51eebcb
fbd5bb5
c3f41b3
6d6a26e
9968865
2353824
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| import getRootNavigatorScreenOptions from '@libs/Navigation/AppNavigator/getRootNavigatorScreenOptions'; | ||
| import type {ThemeStyles} from '@styles/index'; | ||
| import type {StyleUtilsType} from '@styles/utils'; | ||
|
|
||
| function getOnboardingModalScreenOptions(isSmallScreenWidth: boolean, styles: ThemeStyles, StyleUtils: StyleUtilsType) { | ||
| return getRootNavigatorScreenOptions(isSmallScreenWidth, styles, StyleUtils).fullScreen; | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We failed to handle gestures. #40555
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @parasharrajat sorry, I didn't get what you meant. What is the problem with have with the gestures?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| } | ||
|
|
||
| export default getOnboardingModalScreenOptions; | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| import getRootNavigatorScreenOptions from '@libs/Navigation/AppNavigator/getRootNavigatorScreenOptions'; | ||
| import type {ThemeStyles} from '@styles/index'; | ||
| import type {StyleUtilsType} from '@styles/utils'; | ||
|
|
||
| function getOnboardingModalScreenOptions(isSmallScreenWidth: boolean, styles: ThemeStyles, StyleUtils: StyleUtilsType, shouldUseNarrowLayout: boolean) { | ||
| return getRootNavigatorScreenOptions(isSmallScreenWidth, styles, StyleUtils).onboardingModalNavigator(shouldUseNarrowLayout); | ||
| } | ||
|
|
||
| export default getOnboardingModalScreenOptions; |
Uh oh!
There was an error while loading. Please reload this page.