https://kotlinlang.org logo
Title
e

Erfannj En

08/22/2022, 5:13 PM
Hello, I want the composables inside the column to have a height min, in addition to using weight for scrollable in small size screen, but when chaining them in the modifier, the height min does not work and is not applied. Do you have a solution for this problem?
c

Chris Sinco [G]

08/22/2022, 10:30 PM
Do you have an example code snippet where this isn’t working?
e

Erfannj En

08/23/2022, 11:49 AM
@Chris Sinco [G] Column(Modifier.fillMaxSize().verticalScrollable()) { Column(Modifier.heightIn(250).weight(0.6f)) { .... } Column(Modifier.heightIn(200).weight(0.4f)) { .... } } I also changed the order of the modifiers, but there is no difference