fix(cw_gen): fix textwrapper

This commit is contained in:
Hugo Pointcheval 2023-02-09 18:09:14 +01:00
parent aeb4366ec1
commit 9e332c3ba7
Signed by: hugo
GPG Key ID: 3AAC487E131E00BC

View File

@ -27,6 +27,6 @@ class CustomAppBarExample extends AppBarComponent
@override
Widget build(BuildContext context) => AppBar(
title: Text(super.title ?? ''),
title: Text(super.title?.text ?? ''),
);
}