Skip to content
Snippets Groups Projects
Commit b38bb854 authored by Benoît Harrault's avatar Benoît Harrault
Browse files

Merge branch '40-fix-colors' into 'master'

Resolve "Fix colors"

Closes #40

See merge request !38
parents 7a64701e 3d3afc3c
No related branches found
No related tags found
1 merge request!38Resolve "Fix colors"
Pipeline #5603 passed
org.gradle.jvmargs=-Xmx1536M org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true android.useAndroidX=true
android.enableJetifier=true android.enableJetifier=true
app.versionName=0.0.37 app.versionName=0.0.38
app.versionCode=37 app.versionCode=38
Fix text color, reduce cells border width.
Correction sur couleur de texte, diminution de la largeur des bordures des cases.
...@@ -38,7 +38,7 @@ class BoardPainter extends CustomPainter { ...@@ -38,7 +38,7 @@ class BoardPainter extends CustomPainter {
} }
// borders // borders
const double borderSize = 4; const double borderSize = 2;
final cellPaintBorder = Paint(); final cellPaintBorder = Paint();
cellPaintBorder.color = colorScheme.onSurface; cellPaintBorder.color = colorScheme.onSurface;
cellPaintBorder.strokeWidth = borderSize; cellPaintBorder.strokeWidth = borderSize;
......
...@@ -31,7 +31,7 @@ class TopIndicator extends StatelessWidget { ...@@ -31,7 +31,7 @@ class TopIndicator extends StatelessWidget {
style: const TextStyle( style: const TextStyle(
fontSize: 35, fontSize: 35,
fontWeight: FontWeight.w600, fontWeight: FontWeight.w600,
color: Colors.black, color: Colors.grey,
), ),
), ),
], ],
......
...@@ -2,7 +2,7 @@ name: colors ...@@ -2,7 +2,7 @@ name: colors
description: Fill the board, a colorfull game! description: Fill the board, a colorfull game!
publish_to: 'none' publish_to: 'none'
version: 0.0.37+37 version: 0.0.38+38
environment: environment:
sdk: '^3.0.0' sdk: '^3.0.0'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment