I need to create image like this in Flutter using custom painting:
I have the following code:
Center(
child: CustomPaint(
child: Container(
width: MediaQuery.of(context).size.width,
height: MediaQuery.of(context).size.height,
),
painter: CustomWave(),
))
Can anyone help me to do this?
Try this:
class Moon extends CustomPainter:
use: