build method

  1. @override
Widget build(
  1. BuildContext context
)
override

Apply styles and build Stack as Widget

Example usage:

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

Implementation

@override
build(context) => internalBuild(
      Wrap(
        key: key,
        children: _children,
        direction: _direction,
        alignment: _alignment,
        runAlignment: _runAlignment,
        crossAxisAlignment: _crossAxisAlignment,
        spacing: _spacing,
        runSpacing: _runSpacing,
        textDirection: _textDirection,
        clipBehavior: _clipBehavior,
        verticalDirection: _verticalDirection,
      ),
    );