Relative Content

Tag Archive for androidkotlinandroid-jetpack-composechatmessenger

Scroll position when opening the keyboard as in “Telegram”

@Composable fun ChatScreenContent( modifier: Modifier = Modifier, // … ) { // … Column( modifier = modifier.fillMaxSize(), ) { LazyColumn( modifier = Modifier.weight(1f), contentPadding = PaddingValues(vertical = 8.dp), state = scrollState, ) { // … } MessageInput( modifier = Modifier.padding(horizontal = 4.dp).imePadding(), // … ) Spacer(modifier = Modifier.height(8.dp)) } } When I use ‘android:windowSoftInputMode=”adjustResize”` and […]