build method
Apply styles and build Row as Widget
Example usage:
NikuRow([
Text("0"),
Text("1")
])
.mainAxis(MainAxisAlignment.center)
.crossCenter()
.append(Text("2"))
Implementation
build(context) => internalBuild(
Row(
key: key,
children: _children,
mainAxisAlignment: _mainAxisAlignment,
mainAxisSize: _mainAxisSize,
crossAxisAlignment: _crossAxisAlignment,
textDirection: _textDirection,
verticalDirection: _verticalDirection,
textBaseline: _textBaseline,
),
);