ParentBuilder typedef

ParentBuilder = Widget Function(BuildContext context, Widget child)

A function that provides the BuildContext and the child widget.

Implementation

typedef ParentBuilder =
    Widget Function(
      BuildContext context,
      Widget child,
    );