How to divide available space in a row evenly betw...
# compose
m
How to divide available space in a row evenly between items? For a bottomBar for example, the items tend to stick to start by default.
a
Modifier.weight(1) i guess
m
Thanks @andev. It works by using Modifier.weight(1f) for all elements of the Row.