From b3c9990685798eb24c17b4377efd1e8d3607410c 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 c776485..e3f8a91 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -7,7 +7,7 @@ void main() { runApp( Provider( create: (context) => AppDatabase(), - child: MyApp(), + child: const MyApp(), dispose: (context, db) => db.close(), ), );