cb
12/02/2020, 8:47 PMAdriano Celentano
12/03/2020, 2:19 PMProvideWindowInsets(windowInsetsAnimationsEnabled = true) {
Box(Modifier.fillMaxSize()) {
TextField(
value = "test",
onValueChange = {},
modifier = Modifier
.align(Alignment.BottomCenter)
.navigationBarsWithImePadding()
.padding(bottom = 50.dp)
)
}
}
cb
12/03/2020, 2:24 PMWindowCompat.setDecorFitsSystemWindows(window, false)
android:windowSoftInputMode="adjustResize"
on the activityAdriano Celentano
12/03/2020, 2:29 PMcb
12/03/2020, 2:35 PM