Arun
11/24/2020, 9:02 PM.preferredHeight(IntrinsicSize.Min)
. Getting the following error if a Composable using it is inside ScrollableColumn:
java.lang.IllegalStateException: Intrinsic measurements are not currently supported by SubcomposeLayout
Any idea what this is and how to get around this? I’m currently on alpha07.Adam Powell
11/24/2020, 9:12 PMpreferredHeight(IntrinsicSize.Min)
to is performing subcomposition and use a different tool there, or find another way to express your layout other than preferred*(IntrinsicSize.*)
Arun
11/24/2020, 9:19 PMAdam Powell
11/24/2020, 9:26 PMBox
offers Modifier.matchParentSize()
Arun
11/24/2020, 9:33 PM