mirror of
https://github.com/balzack/databag.git
synced 2025-02-14 12:39:17 +00:00
enable keyboard avoid on ios only
This commit is contained in:
parent
edcffa6a67
commit
96b9596fdd
@ -56,9 +56,8 @@ export function ConversationBody() {
|
||||
const noop = () => {};
|
||||
|
||||
return (
|
||||
<KeyboardAvoidingView style={styles.thread}
|
||||
behavior={Platform.OS === 'ios' ? 'padding' : 'height'}
|
||||
keyboardVerticalOffset={Platform.OS === 'ios' ? 100 : 0}>
|
||||
<KeyboardAvoidingView style={styles.thread} behavior="padding" keyboardVerticalOffset="100"
|
||||
enabled={Platform.OS === 'ios' ? true : false}>
|
||||
<FlatList style={styles.topics}
|
||||
ref={ref}
|
||||
data={state.topics}
|
||||
|
Loading…
Reference in New Issue
Block a user