fix(cw_gen): fix textwrapper

This commit is contained in:
2023-02-09 18:09:14 +01:00
parent 75cb341447
commit 5d8f94bee8
@@ -27,6 +27,6 @@ class CustomAppBarExample extends AppBarComponent
@override
Widget build(BuildContext context) => AppBar(
title: Text(super.title ?? ''),
title: Text(super.title?.text ?? ''),
);
}