From 4428399a866f85f1895c33b37eefbe3653c93df1 Mon Sep 17 00:00:00 2001 From: Alessio Bianchetti Date: Wed, 8 Jan 2025 19:55:52 +0100 Subject: [PATCH] feat: add title to MaterialApp in app.dart --- lib/app.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/app.dart b/lib/app.dart index a0ddd3b..7c50ea8 100644 --- a/lib/app.dart +++ b/lib/app.dart @@ -13,6 +13,7 @@ class App extends StatelessWidget { BlocProvider(create: (_) => NavigationBloc()), ], child: MaterialApp( + title: 'First Day', home: const Navigation(), ), );