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