expands infinitely in height, pushing any elements below the row out of sight.
I’m using it as the
text
element in an
AlertDialog
. What am I doing wrong?
a
Adam Powell
12/20/2019, 4:32 PM
Can you show the code that's calling it?
d
Drew Hamilton
12/20/2019, 6:46 PM
The code calling the
AlertDialog
?
Drew Hamilton
12/20/2019, 6:51 PM
Copy code
@Composable fun Popup(model: Model) {
val context = +ambient(ContextAmbient)
AlertDialog(
...
title = { Text("Title") },
text = <earlier snippet>,
buttons = ...
Drew Hamilton
12/20/2019, 6:53 PM
That's the function that calls it directly. I can paste where that is called from too if it's relevant. Similar to how Jetnews shows an AlertDialog though