Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
Loading items

Target

Select target project
  • android/org.benoitharrault.jeweled
1 result
Select Git revision
Loading items
Show changes
Commits on Source (2)
org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true
app.versionName=0.0.15
app.versionCode=15
app.versionName=0.0.16
app.versionCode=16
Reduce cells overlapping.
Réduction du chevauchement des cellules.
......@@ -42,8 +42,8 @@ class GameBoardPainter extends CustomPainter {
cellPaintBackground.color = Color(colorCode);
cellPaintBackground.style = PaintingStyle.fill;
final Rect cellBackground = Rect.fromPoints(Offset(x - overlapping, y - overlapping),
Offset(x + cellSize + overlapping, y + cellSize + overlapping));
final Rect cellBackground = Rect.fromPoints(
Offset(x, y), Offset(x + cellSize + overlapping, y + cellSize + overlapping));
canvas.drawRect(cellBackground, cellPaintBackground);
}
......
......@@ -3,7 +3,7 @@ description: Jeweled Game
publish_to: 'none'
version: 0.0.15+15
version: 0.0.16+16
environment:
sdk: '^3.0.0'
......