Hi, I have a simple screen using Scaffold with the...
# compose
p
Hi, I have a simple screen using Scaffold with the topAppBar and the content. The content is just a Column with a BasicTextField and a Text below it.I want to make the content of the BasicTextField automatically scroll when typing .When I use
Copy code
setDecorFitsSystemWindows(window, false)
setSoftInputMode(SOFT_INPUT_ADJUST_RESIZE)
inside the activity, it works as expected .But my application contains a lot of fragment , If I setDecorFitsSystemWindows and setSoftInputMode inside the fragment it doesn't work,the text Text goes below the keyboard .I tried both Compose 1.3 and accompanist insets library. Someone already asked https://issuetracker.google.com/issues/192043120#comment15 Anyone know how to fix it.