diff --git a/packages/wyatt_component_copy_with_gen/example/lib/custom_app_bar_example.dart b/packages/wyatt_component_copy_with_gen/example/lib/custom_app_bar_example.dart index e08015f2..870222a6 100644 --- a/packages/wyatt_component_copy_with_gen/example/lib/custom_app_bar_example.dart +++ b/packages/wyatt_component_copy_with_gen/example/lib/custom_app_bar_example.dart @@ -27,6 +27,6 @@ class CustomAppBarExample extends AppBarComponent @override Widget build(BuildContext context) => AppBar( - title: Text(super.title ?? ''), + title: Text(super.title?.text ?? ''), ); }