diff --git a/native/chat/settings/thread-settings.react.js b/native/chat/settings/thread-settings.react.js --- a/native/chat/settings/thread-settings.react.js +++ b/native/chat/settings/thread-settings.react.js @@ -7,8 +7,9 @@ } from '@react-navigation/core'; import invariant from 'invariant'; import * as React from 'react'; -import { Platform, View } from 'react-native'; -import { FlatList } from 'react-native-gesture-handler'; +import { FlatList, Platform, View } from 'react-native'; +import { ScrollView } from 'react-native-gesture-handler'; +import { KeyboardAwareScrollView } from 'react-native-keyboard-controller'; import { createSelector } from 'reselect'; import tinycolor from 'tinycolor2'; @@ -873,6 +874,13 @@ scrollEnabled={!ThreadSettings.scrollDisabled(this.props)} indicatorStyle={this.props.indicatorStyle} initialNumToRender={20} + renderScrollComponent={props => ( + + )} /> );