fix(cw_gen): fix textwrapper

This commit is contained in:
Hugo Pointcheval 2023-02-09 18:09:14 +01:00
parent 75cb341447
commit 5d8f94bee8
Signed by: hugo
GPG Key ID: 3AAC487E131E00BC

View File

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