From 385bd39aa1ba6cf2e41533dc4c3aa42ad0ee3854 Mon Sep 17 00:00:00 2001 From: Mathis Kirchner Date: Sat, 9 May 2026 17:30:44 +0200 Subject: [PATCH] change placement tile decoration --- .../main_menu/match_view/match_result_view.dart | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/lib/presentation/views/main_menu/match_view/match_result_view.dart b/lib/presentation/views/main_menu/match_view/match_result_view.dart index 7d5ed92..33c319d 100644 --- a/lib/presentation/views/main_menu/match_view/match_result_view.dart +++ b/lib/presentation/views/main_menu/match_view/match_result_view.dart @@ -198,11 +198,17 @@ class _MatchResultViewState extends State { alignment: Alignment.center, height: 60, child: Container( - decoration: - CustomTheme.standardBoxDecoration, + decoration: BoxDecoration( + color: CustomTheme.boxColor, + border: Border.all( + color: CustomTheme.primaryColor, + ), + borderRadius: CustomTheme + .standardBorderRadiusAll, + ), alignment: Alignment.center, height: 50, - width: 40, + width: 41, child: Text( ' #${i + 1} ', style: const TextStyle( @@ -223,7 +229,8 @@ class _MatchResultViewState extends State { proxyDecorator: (child, index, animation) { return Material( color: Colors.transparent, - child: child, + elevation: 8, + child: Opacity(opacity: 0.9, child: child), ); }, onReorder: (int oldIndex, int newIndex) {