feat(ui_components): make app bar leading & actions customizable

This commit is contained in:
AN12345
2022-12-12 12:34:02 -05:00
parent dc0f0c61c6
commit dd275460f6
3 changed files with 32 additions and 3 deletions
@@ -10,7 +10,9 @@ class CustomAppBar extends AppBarComponent {
);
@override
AppBarComponent configure({String? title}) => CustomAppBar(
AppBarComponent configure(
{String? title, Widget? leading, List<Widget>? actions}) =>
CustomAppBar(
title: title ?? this.title,
);
}