We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 683d780 commit 0417f26Copy full SHA for 0417f26
examples/SampleApp/App.tsx
@@ -169,12 +169,11 @@ const isMessageAIGenerated = (message: LocalMessage) => !!message.ai_generated;
169
const DrawerNavigatorWrapper: React.FC<{
170
chatClient: StreamChat;
171
}> = ({ chatClient }) => {
172
- const { bottom } = useSafeAreaInsets();
173
const streamChatTheme = useStreamChatTheme();
174
175
return (
176
<GestureHandlerRootView style={{ flex: 1 }}>
177
- <OverlayProvider bottomInset={bottom} value={{ style: streamChatTheme }}>
+ <OverlayProvider value={{ style: streamChatTheme }}>
178
<Chat
179
client={chatClient}
180
enableOfflineSupport
0 commit comments