Neuer Regelsatz: Platzierung #213

Merged
sneeex merged 22 commits from feature/206-Neuer-Regelsatz-Platzierung into development 2026-05-09 21:37:30 +00:00
Showing only changes of commit 385bd39aa1 - Show all commits

View File

@@ -198,11 +198,17 @@ class _MatchResultViewState extends State<MatchResultView> {
alignment: Alignment.center, alignment: Alignment.center,
height: 60, height: 60,
child: Container( child: Container(
decoration: decoration: BoxDecoration(
CustomTheme.standardBoxDecoration, color: CustomTheme.boxColor,
border: Border.all(
color: CustomTheme.primaryColor,
),
borderRadius: CustomTheme
.standardBorderRadiusAll,
),
alignment: Alignment.center, alignment: Alignment.center,
height: 50, height: 50,
width: 40, width: 41,
child: Text( child: Text(
' #${i + 1} ', ' #${i + 1} ',
style: const TextStyle( style: const TextStyle(
@@ -223,7 +229,8 @@ class _MatchResultViewState extends State<MatchResultView> {
proxyDecorator: (child, index, animation) { proxyDecorator: (child, index, animation) {
return Material( return Material(
color: Colors.transparent, color: Colors.transparent,
child: child, elevation: 8,
child: Opacity(opacity: 0.9, child: child),
); );
}, },
onReorder: (int oldIndex, int newIndex) { onReorder: (int oldIndex, int newIndex) {