Is there a way to set insets without putting `andr...
# compose
y
Is there a way to set insets without putting
android:windowSoftInputMode="adjustResize"
in my Manifest file ? (i don’t want my layouts to be resized when the keyboard is on the screen but i just want my Textfield to be visible)
e
adjustResize
offers the best UX in most cases for end users, why do you prefer not to turn it on?
c
I noticed your earlier post but haven’t had the chance to reply. TextField is not well supported in Lazy layouts. But I watched your video and didn’t understand why you needed LazyColumn, it looked like you could just use a Column. Any reason you need LazyColumn?
y
yeah ! but i’ve an other screen which contains a List of Items with TextFields, as you said i just read that TextField is not well supported in Lazy layouts. Thanks !!