feat(ui_components): make component data field nullable (#92)
This commit is contained in:
@@ -50,7 +50,7 @@ class Home extends StatelessWidget {
|
||||
Widget build(BuildContext context) => Scaffold(
|
||||
appBar: PreferredSize(
|
||||
preferredSize: const Size.fromHeight(60),
|
||||
child: context.components.appBar.configure(title: 'Example title'),
|
||||
child: context.components.appBar?.configure(title: 'Example title'),
|
||||
),
|
||||
body: Column(
|
||||
children: [
|
||||
|
||||
Reference in New Issue
Block a user