Matthias Nott
2026-03-07 d97d98a524d2b2dd56c718a806eecab0b3270c88
components/SessionDrawer.tsx
....@@ -9,7 +9,9 @@
99 Animated,
1010 Dimensions,
1111 Keyboard,
12
+ KeyboardAvoidingView,
1213 LayoutAnimation,
14
+ Platform,
1315 Pressable,
1416 ScrollView,
1517 StyleSheet,
....@@ -471,6 +473,10 @@
471473 elevation: 20,
472474 }}
473475 >
476
+ <KeyboardAvoidingView
477
+ style={{ flex: 1 }}
478
+ behavior={Platform.OS === "ios" ? "padding" : undefined}
479
+ >
474480 <GestureHandlerRootView style={{ flex: 1 }}>
475481 {/* Header */}
476482 <View
....@@ -673,6 +679,7 @@
673679 </Text>
674680 </View>
675681 </GestureHandlerRootView>
682
+ </KeyboardAvoidingView>
676683 </Animated.View>
677684 </View>
678685 </View>