A Box that lays its children out side by side.
A row stretches to its parent's width by default, as flexbox does, so justifyContent has space to distribute without being given one.
justifyContent
Row({ justifyContent: Style.Justify.SpaceBetween, alignItems: Style.Align.Center, children: [Text('left'), Text('right')],}) Copy
Row({ justifyContent: Style.Justify.SpaceBetween, alignItems: Style.Align.Center, children: [Text('left'), Text('right')],})
A Box that lays its children out side by side.
A row stretches to its parent's width by default, as flexbox does, so
justifyContenthas space to distribute without being given one.