Apply dart autofixes

This commit is contained in:
zontreck 2023-12-25 16:52:03 -07:00
parent 6fdcbb05c4
commit c15f0e7986
16 changed files with 92 additions and 89 deletions

View file

@ -13,8 +13,8 @@ class MainApp extends StatelessWidget {
return MaterialApp(
theme: ThemeData.dark(),
routes: {
"/": (context) => Editor(),
"/select_file": (context) => FileSelectionScreen()
"/": (context) => const Editor(),
"/select_file": (context) => const FileSelectionScreen()
},
);
}