New Layout - Pro Bewertung

This commit is contained in:
Jonas Braus
2024-11-28 19:39:06 +01:00
parent c272b80f15
commit 7f85b84a15
6 changed files with 123 additions and 61 deletions
+2 -11
View File
@@ -24,17 +24,11 @@ class RatingCard extends StatelessWidget {
return Column(
children: [
Container(
padding: EdgeInsets.all(15),
padding: EdgeInsets.all(10),
decoration: BoxDecoration(
color: Theme.of(context).colorScheme.surface,
borderRadius: BorderRadius.circular(15),
boxShadow: [
BoxShadow(
color: Colors.grey.withOpacity(0.5),
spreadRadius: 5,
blurRadius: 7,
offset: Offset(0, 3))
]),
),
child: Column(
children: [
Text(title, style: TextStyle(fontSize: 22),),
@@ -49,9 +43,6 @@ class RatingCard extends StatelessWidget {
],
),
),
SizedBox(
height: 20,
)
],
);
}