Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3156807
D11849.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D11849.diff
View Options
diff --git a/native/account/registration/registration-terms.react.js b/native/account/registration/registration-terms.react.js
--- a/native/account/registration/registration-terms.react.js
+++ b/native/account/registration/registration-terms.react.js
@@ -67,6 +67,27 @@
}
}, [register, userSelections, clearCachedSelections]);
+ const { navigation } = props;
+ React.useEffect(() => {
+ if (!registrationInProgress) {
+ return undefined;
+ }
+ navigation.setOptions({
+ gestureEnabled: false,
+ headerLeft: null,
+ });
+ const removeListener = navigation.addListener('beforeRemove', e => {
+ e.preventDefault();
+ });
+ return () => {
+ navigation.setOptions({
+ gestureEnabled: true,
+ headerLeft: undefined,
+ });
+ removeListener();
+ };
+ }, [navigation, registrationInProgress]);
+
const styles = useStyles(unboundStyles);
const termsNotice = (
diff --git a/native/flow-typed/npm/@react-navigation/core_v6.x.x.js b/native/flow-typed/npm/@react-navigation/core_v6.x.x.js
--- a/native/flow-typed/npm/@react-navigation/core_v6.x.x.js
+++ b/native/flow-typed/npm/@react-navigation/core_v6.x.x.js
@@ -1373,7 +1373,7 @@
+headerTitleContainerStyle: AnimatedViewStyleProp,
+headerTintColor: string,
+headerTitleAllowFontScaling: boolean,
- +headerLeft: NavHeaderLeftProps => React$Node,
+ +headerLeft: null | (NavHeaderLeftProps => React$Node),
+headerLeftContainerStyle: AnimatedViewStyleProp,
+headerRight: NavHeaderRightProps => React$Node,
+headerRightContainerStyle: AnimatedViewStyleProp,
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Nov 6, 5:33 PM (21 h, 55 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2431529
Default Alt Text
D11849.diff (1 KB)
Attached To
Mode
D11849: [native] Prevent user from leaving RegistrationTerms during registration request
Attached
Detach File
Event Timeline
Log In to Comment