Skip to content

Commit

Permalink
refactor: improve code structure and code refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
mediocre9 committed Nov 7, 2023
1 parent 93f3c59 commit 6b3c7c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ class SmartLinkApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: Strings.appName,
title: AppStrings.appName,
color: AppColors.primary,
theme: AppTheme.darkTheme(),
theme: AppTheme.darkTheme,
onGenerateRoute: RouteGenerator.generate,
initialRoute: kDebugMode ? Routes.bluetoothHome : Routes.auth,
debugShowCheckedModeBanner: kDebugMode ? true : false,
Expand Down

0 comments on commit 6b3c7c7

Please sign in to comment.