upgraded stuff, prepared for notifications, renamed app. No actual code-changes :/

This commit is contained in:
2023-01-16 00:02:19 +01:00
parent 367c1cecbf
commit 9cb8730d6d
22 changed files with 141 additions and 75 deletions

View File

@ -40,7 +40,7 @@ class TodoTxtReminderApp extends StatelessWidget {
const inputDecorationTheme = InputDecorationTheme(border: OutlineInputBorder(), focusColor: secondaryColor);
return MaterialApp(
title: 'Nextcloud Reminder',
title: 'Todo.txt Reminder',
theme: ThemeData(
brightness: Brightness.light,
colorScheme: ThemeData.light().colorScheme.copyWith(primary: primaryColor, secondary: secondaryColor, background: primaryColor.shade50),
@ -60,7 +60,7 @@ class TodoTxtReminderApp extends StatelessWidget {
),
),
themeMode: ThemeMode.system,
home: const HomeWidget(title: 'todo.txt reminder'),
home: const HomeWidget(title: 'Todo.txt Reminder'),
);
}
}