Hello! I am trying to add to my project a row with...
# compose
m
Hello! I am trying to add to my project a row with a column with take the maximum space available and other only the minimum space needed. I show in the codelab the modifiers Flexible and Inflexible but these seem to be deprecated. What are the replacement for this?
l
LayoutFlexible modifier
a
right, and there's no replacement for Inflexible because anything in a `Column`/`Row` without
LayoutFlexible
modifier is now inflexible by default
m
Thanks!
I am trying to use LayoutFlexible but I can not resolve it. Is this in dev05?
I know now what was wrong. I had somethink like this:
Copy code
Row {
  composableFun1()
  composableFun2()
}
but LayoutFlexible can't be in a nested function inside Row
l
Ah yes, you need to explicitly pass it through to the function, we are investigating ways to make this easier