build method

Column build({
  1. Key? key,
})

Apply styles and build Column as Widget

Example usage:

NikuColumn([
  Text("0"),
  Text("1")
])
  .mainAxis(MainAxisAlignment.center)
  .crossCenter()
  .append(Text("2"))
  .build()

Implementation

Column build({Key? key}) => Column(
      key: key,
      children: this._children,
      mainAxisAlignment: this._mainAxisAlignment,
      mainAxisSize: this._mainAxisSize,
      crossAxisAlignment: this._crossAxisAlignment,
      textDirection: this._textDirection,
      verticalDirection: this._verticalDirection,
      textBaseline: this._textBaseline,
    );