https://kotlinlang.org logo
Title
u

user

06/28/2022, 8:51 AM
Jetpack Compose: TextField grows outside of AlertDialog If you run the following composable and enter a long multiline text into the textfield, you will see that as the text grows, it leaves the AlertDialog. Is there a way to fix this? Ideal would be if it would grow to a certain point and then start scrolling. import androidx.compose.foundation.layout.fillMaxWidth import androidx.compose.material.* import androidx.compose.runtime.* import androidx.compose.ui.Modifier import androidx.compose.ui.tooling.preview.Preview @Preview @Composable fun...