Creating a simple Ping-Pong game using Flutter CustomPainter and Explicit animations
CustomPaint is a widget that allows you to draw shapes on a canvas using a CustomPainter. The first step into creating our game would be to draw out a simple circle and a rectangle on our canvas
Create a new flutter project
import 'package:flutter/m...