From b042d6cff60a566df44ca6dbd0826e56c5b67db7 Mon Sep 17 00:00:00 2001 From: Madlen Ort <madlen.ort@stud.hs-hannover.de> Date: Fri, 3 Feb 2023 16:42:12 +0100 Subject: [PATCH] Weitergemacht --- lib/classification/classification.dart | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/classification/classification.dart b/lib/classification/classification.dart index e36ef1d..4593199 100644 --- a/lib/classification/classification.dart +++ b/lib/classification/classification.dart @@ -108,7 +108,7 @@ class _ClassificationPageState extends State<ClassificationPage> { child: Container( child: _orangeSelected ? selectedColor("Orange", Colors.orange, Colors.white.withOpacity(0.9), - "soul", "jazz", "Orange 3", 'Wärme, Energie, Herbst') : noSelection("Orange") + "soul", "jazz", "indie-pop", 'Wärme, Energie, Herbst') : noSelection("Orange") ) ,), const SizedBox(height: 20,), @@ -200,7 +200,7 @@ class _ClassificationPageState extends State<ClassificationPage> { child: Container( child: _brownSelected ? selectedColor("Brown", Colors.brown, Colors.white.withOpacity(0.9), - "country", "Brown2", "Brown3", 'info') : noSelection("Brown") + "country", "folk", "reggae", 'Wärme, Geborgenheit, Nostalgie, Ruhe') : noSelection("Brown") ) ,), const SizedBox(height: 20,), @@ -212,7 +212,8 @@ class _ClassificationPageState extends State<ClassificationPage> { if (!_blackSelected){_ambientBackgroundColor = Colors.grey.withOpacity(0.5);}}, child: Container( child: _blackSelected ? - selectedColor("Black", Colors.black87, Colors.white.withOpacity(0.7), "Black1", "Black2", "Black3", 'info') : noSelection("Black") + selectedColor("Black", Colors.black87, Colors.white.withOpacity(0.7), + "metal", "classical", "rock", 'Melancholie, Macht, Edel') : noSelection("Black") ) ,), const SizedBox(height: 20,), -- GitLab