custom_error_image.dart
8.34 KB
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
import 'dart:math';
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
/// A custom widget that displays an error image with customizable colors.
///
/// The [CustomImageError] widget is used to display an error image in the UI.
/// It takes an optional [iconColor], [backgroundColor], and [outlineColor] parameter
/// to customize the appearance of the error image.
///
class CustomImageError extends LeafRenderObjectWidget {
const CustomImageError({
super.key,
this.iconColor,
this.backgroundColor,
this.outlineColor,
});
final Color? iconColor;
final Color? backgroundColor;
final Color? outlineColor;
@override
RenderObject createRenderObject(BuildContext context) {
return RenderCustomImageError(
iconColor ?? Theme.of(context).colorScheme.onSurfaceVariant,
backgroundColor ?? Theme.of(context).colorScheme.surfaceContainerHighest,
outlineColor ?? Theme.of(context).colorScheme.outline,
);
}
@override
void updateRenderObject(
BuildContext context,
covariant RenderCustomImageError renderObject,
) {
renderObject._backgroundColor =
backgroundColor ??
Theme.of(context).colorScheme.surfaceContainerHighest;
renderObject._iconColor =
iconColor ?? Theme.of(context).colorScheme.onSurfaceVariant;
renderObject._outlineColor =
outlineColor ?? Theme.of(context).colorScheme.outline;
}
}
/// A custom render object for the [CustomImageError] widget.
///
/// The [RenderCustomImageError] class extends RenderProxyBox and is responsible for
/// painting the error image. It takes a [iconColor], [backgroundColor], and [outlineColor]
/// and uses them to draw an error image in the UI.
///
class RenderCustomImageError extends RenderProxyBox {
RenderCustomImageError(
this._iconColor,
this._backgroundColor,
this._outlineColor,
);
Color _iconColor;
Color _outlineColor;
Color _backgroundColor;
/// The color of the icon.
set iconColor(Color value) {
if (value == _iconColor) {
return;
}
_iconColor = value;
markNeedsPaint();
}
/// The background color of the error image.
set backgroundColor(Color value) {
if (value == _backgroundColor) {
return;
}
_backgroundColor = value;
markNeedsPaint();
}
/// The outline color of the error image.
set outlineColor(Color value) {
if (value == _outlineColor) {
return;
}
_outlineColor = value;
markNeedsPaint();
}
@override
void performLayout() {
if (constraints.hasBoundedHeight && constraints.hasBoundedWidth) {
size = constraints.constrain(
Size(
min(constraints.maxWidth, constraints.maxHeight),
min(constraints.maxHeight, constraints.maxWidth),
),
);
return;
}
if (constraints.hasBoundedHeight || constraints.hasBoundedWidth) {
size = constraints.constrain(
Size(
min(constraints.maxHeight, constraints.maxWidth),
min(constraints.maxHeight, constraints.maxWidth),
),
);
return;
}
size = constraints.constrain(const Size(80, 80));
}
@override
void paint(PaintingContext context, Offset offset) {
context.canvas.drawRect(offset & size, Paint()..color = _backgroundColor);
context.canvas.drawRect(
offset & size,
Paint()
..style = PaintingStyle.stroke
..color = _outlineColor,
);
const icon = Icons.image_not_supported;
TextPainter textPainter = TextPainter(textDirection: TextDirection.rtl);
textPainter.text = TextSpan(
text: String.fromCharCode(icon.codePoint),
style: TextStyle(
fontSize: min(min(size.width, size.height), 35),
fontFamily: icon.fontFamily,
color: _iconColor,
),
);
textPainter.layout();
textPainter.paint(
context.canvas,
offset +
Offset(
size.width / 2 - textPainter.size.width / 2,
size.height / 2 - textPainter.size.height / 2,
),
);
}
}
/// A custom widget that displays a loading image with customizable colors.
///
/// The [CustomImageLoading] widget is used to display a loading image in the UI.
/// It takes an optional [iconColor], [backgroundColor], [outlineColor], and [progress] parameter
/// to customize the appearance of the loading image.
///
class CustomImageLoading extends LeafRenderObjectWidget {
const CustomImageLoading({
super.key,
this.iconColor,
this.backgroundColor,
this.outlineColor,
this.progress = 1,
});
/// The color of the icon.
final Color? iconColor;
/// The background color of the loading image.
final Color? backgroundColor;
/// The outline color of the loading image.
final Color? outlineColor;
/// The progress of the loading image.
final double progress;
@override
RenderObject createRenderObject(BuildContext context) {
return RenderCustomImageLoading(
iconColor ?? Theme.of(context).colorScheme.onSurfaceVariant,
backgroundColor ?? Theme.of(context).colorScheme.surfaceContainerHighest,
outlineColor ?? Theme.of(context).colorScheme.outline,
progress,
);
}
@override
void updateRenderObject(
BuildContext context,
covariant RenderCustomImageLoading renderObject,
) {
renderObject._backgroundColor =
backgroundColor ??
Theme.of(context).colorScheme.surfaceContainerHighest;
renderObject._iconColor =
iconColor ?? Theme.of(context).colorScheme.onSurfaceVariant;
renderObject._outlineColor =
outlineColor ?? Theme.of(context).colorScheme.outline;
renderObject.progress = progress;
}
}
/// A custom render object for the [CustomImageLoading] widget.
///
/// The [RenderCustomImageLoading] class extends RenderProxyBox and is responsible for
/// painting the loading image. It takes a [iconColor], [backgroundColor], [outlineColor], and [progress]
/// and uses them to draw a loading image in the UI.
///
class RenderCustomImageLoading extends RenderProxyBox {
RenderCustomImageLoading(
this._iconColor,
this._backgroundColor,
this._outlineColor,
this._progress,
);
Color _iconColor;
Color _outlineColor;
Color _backgroundColor;
double _progress;
set iconColor(Color value) {
if (value == _iconColor) {
return;
}
_iconColor = value;
markNeedsPaint();
}
set backgroundColor(Color value) {
if (value == _backgroundColor) {
return;
}
_backgroundColor = value;
markNeedsPaint();
}
set outlineColor(Color value) {
if (value == _outlineColor) {
return;
}
_outlineColor = value;
markNeedsPaint();
}
set progress(double value) {
if (value == _progress) {
return;
}
_progress = value;
markNeedsPaint();
}
@override
void performLayout() {
if (constraints.hasBoundedHeight && constraints.hasBoundedWidth) {
size = constraints.constrain(
Size(
min(constraints.maxWidth, constraints.maxHeight),
min(constraints.maxHeight, constraints.maxWidth),
),
);
return;
}
if (constraints.hasBoundedHeight || constraints.hasBoundedWidth) {
size = constraints.constrain(
Size(
min(constraints.maxHeight, constraints.maxWidth),
min(constraints.maxHeight, constraints.maxWidth),
),
);
return;
}
size = constraints.constrain(const Size(80, 80));
}
@override
void paint(PaintingContext context, Offset offset) {
context.canvas.drawRect(offset & size, Paint()..color = _backgroundColor);
context.canvas.drawRect(
offset & size,
Paint()
..style = PaintingStyle.stroke
..color = _outlineColor,
);
const icon = Icons.image;
TextPainter textPainter = TextPainter(textDirection: TextDirection.rtl);
textPainter.text = TextSpan(
text: String.fromCharCode(icon.codePoint),
style: TextStyle(
fontSize: min(min(size.width, size.height), 35),
fontFamily: icon.fontFamily,
color: _iconColor,
),
);
textPainter.layout();
context.canvas.drawRect(
(offset + Offset(0, size.height - 5)) & Size(size.width * _progress, 5),
Paint()..color = _iconColor,
);
textPainter.paint(
context.canvas,
offset +
Offset(
size.width / 2 - textPainter.size.width / 2,
size.height / 2 - textPainter.size.height / 2,
),
);
}
}