Drawing Paths In Flutter :
Screenshot :

main.dart
import 'package:flutter/material.dart'; main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: 'Drawing Paths Flutter', home: Container( color: Colors.white, child: CustomPaint( painter: CurvePainter(), ), ), ); } } class CurvePainter extends CustomPainter { @override void paint(Canvas canvas, Size size) { var paint = Paint(); paint.color = Colors.green[800]; paint.style = PaintingStyle.fill; var path = Path(); path.moveTo(0, size.height * 0.9167); path.quadraticBezierTo(size.width * 0.25, size.height * 0.875, size.width * 0.5, size.height * 0.9167); path.quadraticBezierTo(size.width * 0.75, size.height * 0.9584, size.width * 1.0, size.height * 0.9167); path.lineTo(size.width, size.height); path.lineTo(0, size.height); canvas.drawPath(path, paint); } @override bool shouldRepaint(CustomPainter oldDelegate) { return true; } }
The flutter tutorial is a website that bring you the latest and amazing resources of code. All the languages codes are included in this website. The languages like flutter, android, java,kotlin etc.with the help of this languages any user can develop the beautiful application
For more information about Flutter. visit www.fluttertutorial.in