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,10 @@ } 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 type { ScrollViewProps } 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'; @@ -872,6 +874,16 @@ return this.listDataSelector({ ...this.props, ...this.state }); } + renderScrollComponent = (props: ScrollViewProps): React.MixedElement => { + return ( + + ); + }; + render(): React.Node { return ( );