Last updated:
0 purchases
flutter shapes
FlutterShapes #
Live demo powered by Flutter for web.
Shape types #
Adding FlutterShapes to your project #
dependencies:
flutter:
sdk: flutter
flutter_shapes:
copied to clipboard
Drawing a Shape #
import 'package:flutter_shapes/flutter_shapes.dart';
class MyPainter extends CustomPainter {
@override
void paint(Canvas canvas, Size size) {
Paint paint = Paint()..color = Colors.black;
Shapes shapes = Shapes(canvas: canvas, radius: 50, paint: paint, center: Offset.zero, angle: 0);
shapes.drawCircle(); // method name
shapes.drawType(ShapeType.Circle); // enum
shapes.draw('Circle'); // string
}
}
copied to clipboard
Acknowledgements #
https://proandroiddev.com/flutter-animation-creating-mediums-clap-animation-in-flutter-3168f047421e
A great article about animation with Flutter.
It helped me to write example codes.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.