What if I want a simple 2x2 Row-Column combination where one of the rows/columns should have a fixed size and the other should fill the rest? Is there a simple way to do that?
halirutan
12/24/2021, 10:45 AM
I believe that I can simply use the size of the parent and pass it down, calculating the sizes myself, but I wondered if there is an easier way.
k
Kirill Grouchnikov
12/24/2021, 2:16 PM
modifier.weight(weight = 1.0f, fill = true)
h
halirutan
12/24/2021, 2:26 PM
@Kirill Grouchnikov Wow, that's the Christmas present I was hoping for. Thanks a lot.