I have a dialog view like
Dialog(
onDismissRequest = { openDialogCustom.value = false },
properties = DialogProperties(
dismissOnBackPress = true,
dismissOnClickOutside = false
)
) {
Column(Modifier.height(600.dp)) {
Column(
Modifier
.background(Color.White)
.padding(16.dp)
.weight(1f,false)
.verticalScroll(
rememberScrollState()
)
) {
// list of textField views
//Button view
}
}
when I select textfield, the soft keyboard appear and over the button and I cannot scroll too see the bottom button. I need some helps to scroll view to see the bottom button in dialog.
Image for dialog