mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-08-25 01:51:02 +08:00
Use flutter_lint
Instead of picking lint values. This way I don't need to routinely looking at extra lints to enable.
This commit is contained in:
@ -131,9 +131,9 @@ class AppRouter {
|
||||
case AppRoute.AllFolders:
|
||||
return FolderListingScreen();
|
||||
case AppRoute.AllTags:
|
||||
return TagListingScreen();
|
||||
return const TagListingScreen();
|
||||
case AppRoute.Graph:
|
||||
return GraphViewScreen();
|
||||
return const GraphViewScreen();
|
||||
case AppRoute.Settings:
|
||||
return SettingsScreen();
|
||||
case AppRoute.Login:
|
||||
@ -147,7 +147,7 @@ class AppRouter {
|
||||
onCompletedFunction: repository.completeGitHostSetup,
|
||||
);
|
||||
case AppRoute.OnBoarding:
|
||||
return OnBoardingScreen();
|
||||
return const OnBoardingScreen();
|
||||
case AppRoute.Purchase:
|
||||
return PurchaseScreen();
|
||||
case AppRoute.PurchaseThank:
|
||||
|
Reference in New Issue
Block a user