minor rename

This commit is contained in:
Neeraj Gupta 2022-03-05 16:12:55 +05:30
parent 3065d4fdb6
commit d2ce10d90b
No known key found for this signature in database
GPG key ID: 3C5A1684DC1729E1
2 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@ import 'package:photos/services/app_lifecycle_service.dart';
import 'package:photos/services/sync_service.dart';
import 'package:photos/ui/home_widget.dart';
final themeData = ThemeData(
final darkThemeData = ThemeData(
fontFamily: 'Ubuntu',
brightness: Brightness.dark,
hintColor: Colors.grey,
@ -71,7 +71,7 @@ class _EnteAppState extends State<EnteApp> with WidgetsBindingObserver {
Widget build(BuildContext context) {
return MaterialApp(
title: "ente",
theme: themeData,
theme: darkThemeData,
home: EnteApp._homeWidget,
debugShowCheckedModeBanner: false,
navigatorKey: Network.instance.getAlice().getNavigatorKey(),

View file

@ -60,7 +60,7 @@ Future<void> _runInForeground() async {
builder: (args) => EnteApp(_runBackgroundTask, _killBGTask),
lockScreen: LockScreen(),
enabled: Configuration.instance.shouldShowLockScreen(),
themeData: themeData,
themeData: darkThemeData,
));
});
}