https://kotlinlang.org logo
v

Victor Yakovlev

08/28/2020, 8:30 AM
How to set height in percent or weight in Column?
j

John O'Reilly

08/28/2020, 8:33 AM
Am using
Modifier.weight()
here for that...in my particular case I have
Colum
containing an
AndroidView
and a
Box
and one is using
weight(0.4f)
and the other
weight(0.6f)
l

Leland Richardson [G]

08/28/2020, 3:13 PM
you can also use
Modifier.fillMaxHeight(fraction)
6 Views