Erlan Amanatov
06/14/2021, 12:54 PMColumn
with an image but with a limit of its height.
My code looks like
Column{
item1()
item2()
Image(Modifier.weight(1f))
item3()
..
)
For small screens it works fine, but on bigger screens it takes too much space. So I need to limit the height of the image somehow.nglauber
06/14/2021, 1:49 PMModifier.weight(1f)
😉Erlan Amanatov
06/14/2021, 1:53 PMModifier.weight(1f)
currently, and I don't like how it looks on bigger screens.Halil Ozercan
06/14/2021, 2:48 PMheightIn
modifier to weight
modifier work?Erlan Amanatov
06/14/2021, 3:02 PMheightIn
modifier with weight
before, the result was the sameColton Idle
06/14/2021, 3:06 PMErlan Amanatov
06/14/2021, 3:23 PMColton Idle
06/14/2021, 3:28 PM