refactor(ui_layout): update example with components updates (close #90)
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
AN12345 2022-12-12 12:42:11 -05:00
parent cd2806b07b
commit 45c7bd6fca

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,
);
}