master #81

Closed
malo wants to merge 322 commits from master into feat/bloc_layout/new-package
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,
);
}