Return to material 2, cleanup patch

This commit is contained in:
2024-03-12 12:44:18 +05:30
parent e417622210
commit 531699a8bb
3 changed files with 14 additions and 25 deletions

View File

@@ -18,9 +18,10 @@ class MainApp extends StatelessWidget {
lazy: false,
create: (context) => GlobalModel(),
builder: (BuildContext context, child) {
return const MaterialApp(
return MaterialApp(
title: "IIITB Menu",
home: HomePage(),
home: const HomePage(),
theme: ThemeData(useMaterial3: false),
);
},
);