diff --git a/packages/wyatt_ui_layout/example/lib/components/custom_app_bar.dart b/packages/wyatt_ui_layout/example/lib/components/custom_app_bar.dart index cb264c01..d025a569 100644 --- a/packages/wyatt_ui_layout/example/lib/components/custom_app_bar.dart +++ b/packages/wyatt_ui_layout/example/lib/components/custom_app_bar.dart @@ -13,7 +13,12 @@ class CustomAppBar extends AppBarComponent { ); @override - AppBarComponent configure({String? title}) => CustomAppBar( + AppBarComponent configure({ + String? title, + Widget? leading, + List? actions, + }) => + CustomAppBar( title: title ?? this.title, ); }