Hello! Faced with supportingText became 'hidden' in material3 OutlinedTextField when text lines of main text are not feet in available space. How to force reserve space for supportingText in such cases?
PHondogo
04/27/2023, 9:47 AM
Example code:
PHondogo
04/27/2023, 9:48 AM
Copy code
OutlinedTextField(
value = buildString {
repeat(500) {
append("test$it\n")
}
},
onValueChange = {},
supportingText = { Text("Supporting text") } // not visible when value line count more then available space height
)
PHondogo
04/27/2023, 9:52 AM
Modifier.height and Modifier.requiredHeight for supporting text not changing this situation