Implementierung der Games #203
@@ -63,9 +63,8 @@ class CustomTheme {
|
|||||||
|
|
||||||
static BoxDecoration highlightedBoxDecoration = BoxDecoration(
|
static BoxDecoration highlightedBoxDecoration = BoxDecoration(
|
||||||
color: boxColor,
|
color: boxColor,
|
||||||
border: Border.all(color: primaryColor),
|
border: Border.all(color: textColor, width: 2),
|
||||||
|
sneeex marked this conversation as resolved
|
|||||||
borderRadius: standardBorderRadiusAll,
|
borderRadius: standardBorderRadiusAll,
|
||||||
boxShadow: [BoxShadow(color: primaryColor.withAlpha(120), blurRadius: 12)],
|
|
||||||
);
|
);
|
||||||
|
|
||||||
// ==================== Component Themes ====================
|
// ==================== Component Themes ====================
|
||||||
|
|||||||
Reference in New Issue
Block a user
warum ist die border hier die textcolor? checks nicht so vom prinzip, weil in dem game view sind die highlighted border ja in der jeweiligen game farbe und nicht der text farbe
Das hat nichts mit der
ChooseGameViewzutun, ich wollte einfach nur das Highlighting von Containern ändern.