Row

inline fun ResourcesScope.Row(    alignContent: YogaAlign? = null,     alignItems: YogaAlign? = null,     justifyContent: YogaJustify? = null,     wrap: YogaWrap? = null,     isReversed: Boolean = false,     gap: Dimen? = null,     style: Style? = null,     init: FlexboxContainerScope.() -> Unit): Row

Constructs a new Row. Add children by using FlexboxContainerScope.child or FlexboxContainerScope.children:

Row(...) {
  child(Text(text = "Foo"))
}

inline fun ResourcesScope.Row(    alignContent: YogaAlign? = null,     alignItems: YogaAlign? = null,     justifyContent: YogaJustify? = null,     wrap: YogaWrap? = null,     isReversed: Boolean = false,     gap: Dimen? = null,     style: Style? = null): Row

Constructs a new Column without any children.