Started Using ThemeData, Changed Primary Color to indigo and corrected logo to indigo.

Signed-off-by: Andreas Fahrecker <AndreasFahrecker@gmail.com>
This commit is contained in:
Andreas Fahrecker
2021-02-10 15:04:51 +01:00
parent 44db690a4a
commit c5e240e813
11 changed files with 16 additions and 8 deletions

View File

@ -14,8 +14,10 @@ class ProgressDetailSelectDateButton extends StatelessWidget {
@override
Widget build(BuildContext context) {
ThemeData appTheme = Theme.of(context);
return FlatButton(
color: Colors.blue,
color: appTheme.accentColor,
child: Text(
"$leadingString ${selectedDate.toLocal().toString().split(" ")[0]}"),
onPressed: () async {