From af487193d3efcea934567b68b5bedcf22189cc33 Mon Sep 17 00:00:00 2001 From: Ankit Mahato Date: Thu, 9 Mar 2023 04:28:56 +0530 Subject: [PATCH] migrate to material 3 design --- lib/main.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/main.dart b/lib/main.dart index 30c97c4b..327b1fcd 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -27,7 +27,8 @@ class App extends StatelessWidget { debugShowCheckedModeBanner: false, theme: ThemeData( fontFamily: GoogleFonts.openSans().fontFamily, - primarySwatch: Colors.indigo, + colorSchemeSeed: Colors.blue, + useMaterial3: true, ), home: const HomePage(), );