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 45c7bd6fca - Show all commits

View File

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