minor rename
This commit is contained in:
parent
3065d4fdb6
commit
d2ce10d90b
2 changed files with 3 additions and 3 deletions
|
@ -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(),
|
||||
|
|
|
@ -60,7 +60,7 @@ Future<void> _runInForeground() async {
|
|||
builder: (args) => EnteApp(_runBackgroundTask, _killBGTask),
|
||||
lockScreen: LockScreen(),
|
||||
enabled: Configuration.instance.shouldShowLockScreen(),
|
||||
themeData: themeData,
|
||||
themeData: darkThemeData,
|
||||
));
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue