-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathstroke_cap.dart
153 lines (133 loc) · 4.03 KB
/
stroke_cap.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'package:flutter/material.dart';
import 'diagram_step.dart';
const double _kFontSize = 14.0;
class StrokeCapDescription extends CustomPainter {
StrokeCapDescription({this.filename, required this.cap})
: _capPainter = _createLabelPainter(cap.toString());
static const EdgeInsets padding = EdgeInsets.all(3.0);
final String? filename;
final StrokeCap cap;
final TextPainter _capPainter;
Widget get widget {
return ConstrainedBox(
constraints: const BoxConstraints(maxWidth: 130.0),
child: AspectRatio(
aspectRatio: 1.0,
child: Padding(
padding: const EdgeInsets.all(3.0),
child: CustomPaint(painter: this),
),
),
);
}
static TextPainter _createLabelPainter(
String label, {
FontStyle style = FontStyle.normal,
}) {
final TextPainter result = TextPainter(
textDirection: TextDirection.ltr,
text: TextSpan(
text: label,
style: TextStyle(
color: Colors.black,
fontStyle: style,
fontSize: _kFontSize,
),
),
);
result.layout();
return result;
}
@override
void paint(Canvas canvas, Size size) {
assert(size != Size.zero);
final Offset center = Offset(
size.width / 2.0,
(size.height - _capPainter.height - padding.vertical) / 2.0,
);
final Offset start = Offset(0.0, center.dy);
final Offset middle = Offset(size.width / 2.0, center.dy);
final Paint startPaint =
Paint()
..color = Colors.grey
..style = PaintingStyle.stroke
..strokeCap = StrokeCap.square
..strokeWidth = 20.0;
final Paint linePaint =
Paint()
..color = Colors.grey
..style = PaintingStyle.stroke
..strokeCap = cap
..strokeWidth = 20.0;
final Paint endPaint =
Paint()
..color = Colors.deepPurpleAccent
..style = PaintingStyle.stroke
..strokeCap = cap
..strokeWidth = 20.0;
Path line =
Path() // Line
..moveTo(start.dx, start.dy)
..lineTo(middle.dx, middle.dy);
canvas.drawPath(line, linePaint);
line =
Path() // Start point, so that it doesn't show the starting end cap.
..moveTo(start.dx, start.dy)
..lineTo(start.dx, start.dy);
canvas.drawPath(line, startPaint);
line =
Path() // End point, a different color to highlight the cap.
..moveTo(middle.dx, middle.dy)
..lineTo(middle.dx, middle.dy);
canvas.drawPath(line, endPaint);
_capPainter.paint(
canvas,
Offset(
padding.left,
size.height - (padding.bottom + 3.0 + _capPainter.height),
),
);
}
@override
bool shouldRepaint(StrokeCapDescription oldDelegate) {
return cap != oldDelegate.cap;
}
}
class StrokeCapDiagram extends StatelessWidget with DiagramMetadata {
const StrokeCapDiagram({
required this.name,
this.cap = StrokeCap.round,
super.key,
});
@override
final String name;
final StrokeCap cap;
@override
Widget build(BuildContext context) {
final StrokeCapDescription description = StrokeCapDescription(cap: cap);
return ConstrainedBox(
key: UniqueKey(),
constraints: BoxConstraints.tight(const Size(150.0, 100.0)),
child: Container(
padding: const EdgeInsets.all(18.0),
color: Colors.white,
child: CustomPaint(painter: description),
),
);
}
}
class StrokeCapDiagramStep extends DiagramStep {
@override
final String category = 'dart-ui';
final List<StrokeCapDiagram> _diagrams = const <StrokeCapDiagram>[
StrokeCapDiagram(name: 'butt_cap', cap: StrokeCap.butt),
StrokeCapDiagram(name: 'round_cap'),
StrokeCapDiagram(name: 'square_cap', cap: StrokeCap.square),
];
@override
Future<List<StrokeCapDiagram>> get diagrams async => _diagrams;
}