From 2437a88bedb902b21fa51308e32bc0018319b4cc Mon Sep 17 00:00:00 2001 From: Maximilian Betz <Maximilian.Betz@awi.de> Date: Wed, 8 Jun 2022 16:36:59 +0200 Subject: [PATCH] intermediate commit --- README.md | 2 +- lib/main.dart | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 411d5f0..13d5fd7 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ Text: #57827E - Multiple lines for one event to reduce width. Alternative: Do not show all event details in table but show them in a separate widget on selection. This could also be the view to edit event details. - Edit mode. Select an event and open event in edit mode with all event details - Allow to remove pending events. -- Feedback "Success" to to line above table and below top bar. +- Feedback "Success" to line above table and below top bar. # Overview diff --git a/lib/main.dart b/lib/main.dart index b4946fb..dc036b9 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -27,7 +27,13 @@ void main() { runApp(MaterialApp( title: 'Mobile Event Log', theme: ThemeData( + //DAM Arctic: Color.fromRGBO(0x00, 0xAF, 0xB9, 1), + //DAM Ocean: Color.fromRGBO(0x0F, 0x1E, 0x50, 1), + //Feedback Background: Color.fromRGBO(0xCE, 0xED, 0xEB, 1), + //Feedback Text: Color.fromRGBO(0x57, 0x82, 0x7E, 1), + primarySwatch: Colors.blue, + ), initialRoute: '/', routes: { -- GitLab