buildAppBar method

Widget buildAppBar(
  1. BuildContext context
)
inherited

Implementation

Widget buildAppBar(BuildContext context) {
  if (_getGlobalWidgets(context).appBarBuilder != null) {
    return _getGlobalWidgets(context).appBarBuilder!(context);
  }
  return SizedBox.shrink(); // Can't be null since it is a child of a Column
}