ui_components/feat/update-appbarr-component #91

Merged
hugo merged 3 commits from ui_components/feat/update-appbarr-component into master 2022-12-12 19:03:10 +00:00
Showing only changes of commit cd2806b07b - Show all commits

View File

@ -18,7 +18,9 @@ class CustomAppBar extends AppBarComponent {
); );
@override @override
AppBarComponent configure({String? title}) => CustomAppBar( AppBarComponent configure(
{String? title, Widget? leading, List<Widget>? actions}) =>
CustomAppBar(
title: title ?? this.title, title: title ?? this.title,
); );
} }