Skip to content

Commit

Permalink
android modal fix
Browse files Browse the repository at this point in the history
  • Loading branch information
banklesss committed Oct 10, 2023
1 parent 0b8dee5 commit d8551f7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/wallet-mobile/src/features/Modal/ModalScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ export const ModalScreen = () => {

return (
<Pressable style={styles.backdrop} onPress={closeModal}>
<KeyboardAvoidingView style={styles.root} behavior={Platform.OS === 'ios' ? 'padding' : 'height'}>
<KeyboardAvoidingView
style={styles.root}
behavior={Platform.OS === 'ios' ? 'padding' : undefined}
enabled={Platform.OS === 'ios'}
>
<Animated.View
style={[
{
Expand Down

0 comments on commit d8551f7

Please sign in to comment.