Compare commits

...

5 Commits

Author SHA1 Message Date
Reinaldo Neto 2bb15e0340
Merge branch 'develop' into fix.hide-keyboard-touch-outside-input 2023-03-09 18:34:29 -03:00
Reinaldo Neto c8ff2f6eb8 update test 2023-03-01 18:21:06 -03:00
Reinaldo Neto 1f26b82d20 change the scrollPersistTap 2023-03-01 18:10:05 -03:00
Reinaldo Neto da62dcb214
Merge branch 'develop' into fix.hide-keyboard-touch-outside-input 2023-03-01 12:17:06 -03:00
Reinaldo Neto aff4e88b07 [FIX] Can't close the keyboard after entering data in one text box on the screen 2023-02-14 14:35:49 -03:00
2 changed files with 14 additions and 14 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
import { KeyboardAwareScrollViewProps } from '@codler/react-native-keyboard-aware-scroll-view'; import { KeyboardAwareScrollViewProps } from '@codler/react-native-keyboard-aware-scroll-view';
const scrollPersistTaps: Partial<KeyboardAwareScrollViewProps> = { const scrollPersistTaps: Partial<KeyboardAwareScrollViewProps> = {
keyboardShouldPersistTaps: 'always', keyboardShouldPersistTaps: 'handled',
keyboardDismissMode: 'interactive' keyboardDismissMode: 'interactive'
}; };