NikuWrap constructor

NikuWrap(
  1. List<Widget> _children, {
  2. Key? key,
})

Niku extension for Wrap

Style property builder for building stack

Example usage:

NikuWrap([
  Text("0"),
  Text("1")
])
  .center()
  .append(Text("2"))

Meta property list:

  • niku() - Switch to Niku() property
  • build() - Apply styles and build FlatButton as Widget

Style Property list:

Implementation

NikuWrap(
  this._children, {
  this.key,
});