mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-22 21:01:31 +03:00
Merge pull request #1495 from esteemapp/bugfix/android-editor-scrool
Fixed android scrool issue
This commit is contained in:
commit
69c47077e3
@ -213,8 +213,8 @@ const MarkdownEditorView = ({
|
||||
return (
|
||||
<KeyboardAvoidingView
|
||||
style={styles.container}
|
||||
keyboardVerticalOffset={Platform.select({ ios: 0, android: 25 })}
|
||||
behavior={Platform.OS === 'ios' ? 'padding' : null}
|
||||
keyboardVerticalOffset={Platform.select({ ios: 0, android: 30 })}
|
||||
behavior={Platform.OS === 'ios' ? 'padding' : 'height'}
|
||||
>
|
||||
{!isPreviewActive ? (
|
||||
<ThemeContainer>
|
||||
@ -234,6 +234,7 @@ const MarkdownEditorView = ({
|
||||
innerRef={inputRef}
|
||||
editable={editable}
|
||||
contextMenuHidden={false}
|
||||
autoGrow={false}
|
||||
/>
|
||||
)}
|
||||
</ThemeContainer>
|
||||
|
Loading…
Reference in New Issue
Block a user