how to make curved app bar with custom clipper in flutter
问题 hi i am new to flutter, I am trying to make this app bar this is my final goal I tried to follow some tutorials to make curved app bars but i couldn't get to the same result as i want after some googling i could've do this simple curve here is the clipper code i used class CurvedClipper extends CustomClipper<Path> { @override Path getClip(Size size) { var path = Path(); path.lineTo(0, size.height - 30); path.quadraticBezierTo( size.width / 2, size.height, size.width, size.height - 30); path