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

This commit was merged in pull request #91.
This commit is contained in:
AN12345
2022-12-12 12:42:11 -05:00
parent cd2806b07b
commit 45c7bd6fca
@@ -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,
);
}