appBarWithString method
PreferredSizeWidget
appBarWithString(
- AppModel app,
- BuildContext context, {
- required String title,
- List<
Widget> ? actions, - IconThemeData? iconTheme,
- BackgroundModel? backgroundOverride,
override
Implementation
@override
PreferredSizeWidget appBarWithString(AppModel app, BuildContext context,
{required String title,
List<Widget>? actions,
IconThemeData? iconTheme,
BackgroundModel? backgroundOverride}) {
return appBarWithWidget(app, context,
title: Text(title,
style: TextStyle(
color: RgbHelper.color(
rgbo:
_monaStyle.monaStyleAttributesModel.appBarIconColor))),
actions: actions,
iconTheme: iconTheme,
backgroundOverride: backgroundOverride);
}