From 5eea6ec8e615106b44ba431f22f2a1bbfe4ff5cf Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 28 Apr 2026 22:51:07 +0000 Subject: [PATCH] fix(nests): keep chat textfield visible above keyboard on NestFullScreen Activity used the system default soft-input behavior (pan), so opening the keyboard slid the whole screen up, partially hiding the composer and putting the top of the screen out of reach. Set adjustResize on NestActivity and add consumeWindowInsets + imePadding to the Scaffold body so the column reflows above the IME and the textfield stays in view. --- amethyst/src/main/AndroidManifest.xml | 1 + .../ui/screen/loggedIn/nests/room/screen/NestFullScreen.kt | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/amethyst/src/main/AndroidManifest.xml b/amethyst/src/main/AndroidManifest.xml index 88d870e53..fd3b4f035 100644 --- a/amethyst/src/main/AndroidManifest.xml +++ b/amethyst/src/main/AndroidManifest.xml @@ -226,6 +226,7 @@ android:launchMode="singleTask" android:exported="false" android:resizeableActivity="true" + android:windowSoftInputMode="adjustResize" android:theme="@style/Theme.Amethyst" />