Updated highlightedBoxDecoration
All checks were successful
Pull Request Pipeline / lint (pull_request) Successful in 47s
Pull Request Pipeline / test (pull_request) Successful in 46s
Pull Request Pipeline / localizations (pull_request) Successful in 26s

This commit is contained in:
2026-05-23 01:08:29 +02:00
parent 25afe998f5
commit a1b2a1d722
5 changed files with 19 additions and 14 deletions

View File

@@ -65,7 +65,11 @@ class CustomTheme {
static BoxDecoration highlightedBoxDecoration = BoxDecoration(
color: boxColor,
border: Border.all(color: textColor, width: 2),
border: Border.all(
color: textColor,
width: 2,
strokeAlign: BorderSide.strokeAlignCenter,
),
borderRadius: standardBorderRadiusAll,
);