getPageHeaderWidget method

  1. @protected
AppBar getPageHeaderWidget(
  1. BuildContext context
)

Implementation

@protected
AppBar getPageHeaderWidget(BuildContext context) => AppBar(
  backgroundColor: Colors.blueGrey[900],
  title: Text(
    env['APP_NAME'] ?? 'App Name',
    style: const TextStyle(
      color: Colors.white,
      fontWeight: FontWeight.bold,
      fontSize: 24,
    ),
  ),
  actions: getHeaderAppBarWidgets(context),
);