build method

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

Describes the part of the user interface represented by this widget.

Implementation

@override
Widget build(BuildContext context) {
  return Stack([
    Positioned(left: 0, top: 0, right: 0, bottom: 0, child: widget.child),
    for (final entry in _entries) entry.builder(context),
  ]);
}