ChildWidgetBuilder typedef

ChildWidgetBuilder = Widget Function(BuildContext context, Widget child)

Builder function that accepts the current build context as well as the child widget that can be customized or wrapped.

Implementation

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