Michal Klimczak
05/18/2021, 3:12 PMMichal Klimczak
05/18/2021, 3:16 PMwindowSoftInputMode. If I set it to adjustPan it behaves the same. If I set it to adjustResize it's not scrolled ever.Michal Klimczak
05/18/2021, 3:49 PMadjustResize with Accompanist ProvideWindowInsets and .navigationBarsWithImePadding() makes the whole view shift the right way and now it's visible, so it's kinda fixed for me 🤷Roshan P Varghese
06/03/2021, 7:20 AMMichal Klimczak
06/03/2021, 8:22 AMProvideWindowInsets(windowInsetsAnimationsEnabled = true) {
Box(
Modifier.fillMaxSize()
) {
Column(
modifier = Modifier
.fillMaxSize()
.verticalScroll(rememberScrollState())
.navigationBarsWithImePadding(),Michal Klimczak
06/03/2021, 8:36 AM