Skip to content

Commit

Permalink
Merge pull request #16 from nevissecurity/feature/NEVISACCESSAPP-5561-…
Browse files Browse the repository at this point in the history
…fix-only-keyboard-dismissing-on-first-button-tap

NEVISACCESSAPP-5561: Let Buttons in ScrollViews handle taps directly …
  • Loading branch information
balazs-gerlei authored Feb 1, 2024
2 parents e915b76 + 7e301f1 commit c6fec31
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/screens/AuthCloudApiRegistrationScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ const AuthCloudApiRegistrationScreen = () => {
paddingLeft: insets.left,
paddingRight: insets.right,
}}
keyboardShouldPersistTaps={'handled'}
>
<View style={styles.titleContainer}>
<Text style={[styles.textForeground, styles.textTitle]}>
Expand Down
1 change: 1 addition & 0 deletions src/screens/DeviceInformationChangeScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ const DeviceInformationChangeScreen = ({ route }: Props) => {
paddingLeft: insets.left,
paddingRight: insets.right,
}}
keyboardShouldPersistTaps={'handled'}
>
<View style={styles.titleContainer}>
<Text style={[styles.textForeground, styles.textTitle]}>
Expand Down
1 change: 1 addition & 0 deletions src/screens/PinScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ const PinScreen = ({ route }: Props) => {
paddingLeft: insets.left,
paddingRight: insets.right,
}}
keyboardShouldPersistTaps={'handled'}
>
<View style={styles.titleContainer}>
<Text style={[styles.textForeground, styles.textTitle]}>
Expand Down
1 change: 1 addition & 0 deletions src/screens/UsernamePasswordLoginScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ const UsernamePasswordLoginScreen = () => {
paddingLeft: insets.left,
paddingRight: insets.right,
}}
keyboardShouldPersistTaps={'handled'}
>
<View style={styles.titleContainer}>
<Text style={[styles.textForeground, styles.textTitle]}>
Expand Down

0 comments on commit c6fec31

Please sign in to comment.