From bb5978eb9016d2f6a3a93681a050c7b68da3a9ad Mon Sep 17 00:00:00 2001 From: Madlen Ort <madlen.ort@stud.hs-hannover.de> Date: Sun, 5 Feb 2023 14:27:43 +0100 Subject: [PATCH] =?UTF-8?q?container=20=C3=A4nderung?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/classification/classification.dart | 30 ++++++++++++-------------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/lib/classification/classification.dart b/lib/classification/classification.dart index 4d97dab..d99b6af 100644 --- a/lib/classification/classification.dart +++ b/lib/classification/classification.dart @@ -66,23 +66,21 @@ class _ClassificationPageState extends State<ClassificationPage> { GoogleFonts.cabin( fontSize: 20.0, color: Colors.white.withOpacity(0.85),),),), - Container( - height: 50, - decoration: BoxDecoration( - color: Color(0xffffffff), - borderRadius: BorderRadius.only(topLeft: Radius.circular(50),topRight: Radius.circular(50)), - boxShadow: [ - BoxShadow( - color: Colors.grey.withOpacity(0.5), - spreadRadius: 5, - blurRadius: 7, - offset: Offset(0, 3), - ), - ],) - ), + Expanded( - child: Container( - color: Color(0xffffffff), + child: Container( + height: 50, + decoration: BoxDecoration( + color: Color(0xffffffff), + borderRadius: BorderRadius.only(topLeft: Radius.circular(50),topRight: Radius.circular(50)), + boxShadow: [ + BoxShadow( + color: Colors.grey.withOpacity(0.5), + spreadRadius: 5, + blurRadius: 7, + offset: Offset(0, 3), + ), + ],), child: ListView( children: <Widget>[ GestureDetector( -- GitLab