getPageHeaderWidget method
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),
);