build method

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

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

Implementation

@override
Widget build(BuildContext context) {
  return _OverlayScope(
    state: this,
    child: Stack(
      children: [
        widget.child,
        ..._entries.map((entry) => entry.builder(context)),
      ],
    ),
  );
}