Does `FlowRow` not offer the ability to vertically...
# compose-android
j
Does
FlowRow
not offer the ability to vertically center children on the same line/row?
u
It does, by setting alignment on the individual items. In
Row
you would set
verticalAlignment
, but for
FlowRow
you should set
Modifier.align(Alignment.CenterVertically)
on each item instead https://developer.android.com/develop/ui/compose/layouts/flow#individual-item