From 41e9eb2c91bb21c159cf5b255dfc66b058de7512 Mon Sep 17 00:00:00 2001 From: mathiskirchner Date: Tue, 24 Jun 2025 20:40:19 +0200 Subject: [PATCH] added const to MyApp in Providers child --- lib/main.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/main.dart b/lib/main.dart index 3f9b3ec..dc582a4 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -8,7 +8,7 @@ void main() { runApp( Provider( create: (context) => AppDatabase(), - child: MyApp(), + child: const MyApp(), dispose: (context, db) => db.close(), ), );