getAppBar method

AppBar? getAppBar(
  1. BuildContext context
)

Implementation

AppBar? getAppBar(BuildContext context) {
  if (!baseScreen.hasAppBar) {
    return null;
  }
  return baseScreen.customAppBar ??
      AppBar(
        title: baseScreen.title != null ? Text(baseScreen.title!) : null,
        actions: const [],
      );
}