path_drawing 0.2.1 path_drawing: ^0.2.1 copied to clipboard
A flutter library to help with (Canvas) Path creation and manipulation
import 'dart:ui';
import 'package:flutter/material.dart';
import 'package:path_drawing/path_drawing.dart';
void main() => runApp(new MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Flutter Demo',
theme: new ThemeData(
primarySwatch: Colors.blue,
),
home: new MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => new _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
title: new Text(widget.title),
),
body: new Center(
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[new CustomPaint(painter: new PathTestPainter())],
),
),
);
}
}
class PathTestPainter extends CustomPainter {
final Path p = parseSvgPathData(
'''M19.0281,19.40466 20.7195,19.40466 20.7195,15.71439 24.11486,15.71439 24.11486,14.36762 20.7195,14.36762
20.7195,11.68641 24.74134,11.68641 24.74134,10.34618 19.0281,10.34618 z''');
final Path p2 = new Path()
..moveTo(10.0, 10.0)
..lineTo(100.0, 100.0)
//..lineTo(125.0, 20.0)
..quadraticBezierTo(125.0, 20.0, 200.0, 100.0)
..addRect(new Rect.fromLTWH(0.0, 0.0, 50.0, 50.0));
final Path p3 = new Path()
..addRect(new Rect.fromLTWH(20.0, 20.0, 50.0, 50.0));
final Paint black = new Paint()
..color = Colors.black
..strokeWidth = 1.0
..style = PaintingStyle.stroke;
final Paint red = new Paint()
..color = Colors.red
..strokeWidth = 1.0
..style = PaintingStyle.stroke;
bool shouldRepaint(PathTestPainter old) => true;
void paint(Canvas canvas, Size size) {
canvas.drawPath(p, red);
canvas.drawPath(p2, black);
canvas.translate(0.0, -100.0);
canvas.drawPath(
dashPath(p2,
dashArray: new CircularIntervalList([5.0, 10.0, 15.0, 15.0]),
dashOffset: new DashOffset.percentage(.05)),
red);
// canvas
// ..scale(5.0, 5.0)
// ..translate(-50.0, -35.0);
// canvas.drawPath(p3, red);
//canvas.drawPath(p2, red);
//canvas.drawPath(Path.combine(PathOperation.intersect, p2, p3), black);
}
}