-
-
Notifications
You must be signed in to change notification settings - Fork 647
Expand file tree
/
Copy pathgf_icon_button.dart
More file actions
349 lines (310 loc) · 10.8 KB
/
gf_icon_button.dart
File metadata and controls
349 lines (310 loc) · 10.8 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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
import 'dart:math' as math;
import 'package:flutter/material.dart';
import 'package:getwidget/getwidget.dart';
class GFIconButton extends StatefulWidget {
/// Create icon buttons of all types. check out [GFButton] for buttons
const GFIconButton({
Key? key,
this.iconSize = 0.0,
this.padding = const EdgeInsets.all(8),
this.alignment = Alignment.center,
required this.icon,
this.focusColor,
this.hoverColor,
this.highlightColor,
this.splashColor,
this.disabledColor,
required this.onPressed,
this.focusNode,
this.autofocus = false,
this.tooltip,
this.type = GFButtonType.solid,
this.shape = GFIconButtonShape.standard,
this.color = GFColors.PRIMARY,
this.borderShape,
this.boxShadow,
this.size = GFSize.MEDIUM,
this.buttonBoxShadow,
this.borderSide,
}) : super(key: key);
/// The size of the icon inside the button.
final double iconSize;
/// The padding around the button's icon.
final EdgeInsetsGeometry padding;
/// Defines how the icon is positioned within the IconButton.
final AlignmentGeometry alignment;
/// The icon to display inside the button.
final Widget icon;
/// The color for the button's icon when it has the input focus.
final Color? focusColor;
/// The color for the button's icon when a pointer is hovering over it.
final Color? hoverColor;
/// Button type of [GFButtonType] i.e, solid, outline, outline2x transparent
final GFButtonType type;
/// Button type of [GFIconButtonShape] i.e, standard, pills, square, shadow, icons
final GFIconButtonShape shape;
/// Pass [GFColors] or [Color]
final Color color;
/// Pass [GFColors] or [Color]. The primary color of the button when the button is in the down (pressed) state.
final Color? splashColor;
/// Pass [GFColors] or [Color]. The secondary color of the button when the button is in the down (pressed) state.
final Color? highlightColor;
/// Pass [GFColors] or [Color]. The color to use for the icon inside the button, if the icon is disabled.
final Color? disabledColor;
/// The callback that is called when the button is tapped or otherwise activated.
final VoidCallback? onPressed;
/// {@macro flutter.widgets.Focus.focusNode}
final FocusNode? focusNode;
/// {@macro flutter.widgets.Focus.autofocus}
final bool autofocus;
/// Text that describes the action that will occur when the button is pressed.
final String? tooltip;
/// The box shadow for the button's [Material], if GFButtonType is solid
final BoxShadow? boxShadow;
/// The shape and border for the button's [Material].
final ShapeBorder? borderShape;
/// size of [double] or [GFSize] i.e, 1.2, small, medium, large etc.
final double size;
/// on true state default box shadow appears around button, if GFButtonType is solid
final bool? buttonBoxShadow;
/// The border side for the button's [Material].
final BorderSide? borderSide;
@override
_GFIconButtonState createState() => _GFIconButtonState();
}
class _GFIconButtonState extends State<GFIconButton> {
late Color color;
Function? onPressed;
late GFButtonType type;
late GFIconButtonShape shape;
BoxShadow? boxShadow;
double? height;
double? width;
double iconPixel = 18;
@override
void initState() {
color = widget.color;
onPressed = widget.onPressed;
type = widget.type;
shape = widget.shape;
super.initState();
}
Color getBorderColor() {
if (widget.onPressed != null) {
return color;
} else {
if (widget.disabledColor != null) {
return widget.disabledColor!;
} else {
return color.withValues(alpha: 0.48);
}
}
}
Color? getDisabledFillColor() {
if (widget.type == GFButtonType.transparent ||
widget.type == GFButtonType.outline ||
widget.type == GFButtonType.outline2x) {
return Colors.transparent;
}
if (widget.disabledColor != null) {
return widget.disabledColor;
} else {
return color.withValues(alpha: 0.48);
}
}
Color? getColor() {
if (widget.type == GFButtonType.transparent ||
widget.type == GFButtonType.outline ||
widget.type == GFButtonType.outline2x) {
return Colors.transparent;
} else {
return color;
}
}
Color? getIconColor() {
if (widget.type == GFButtonType.transparent ||
widget.type == GFButtonType.outline ||
widget.type == GFButtonType.outline2x) {
return widget.onPressed != null
? color == GFColors.TRANSPARENT
? GFColors.DARK
: color
: color.withValues(alpha: 0.48);
} else if (color == GFColors.TRANSPARENT) {
return widget.onPressed != null ? GFColors.DARK : GFColors.WHITE;
} else {
return GFColors.WHITE;
}
}
@override
Widget build(BuildContext context) {
assert(debugCheckHasMaterial(context));
final Color themeColor =
Theme.of(context).colorScheme.onSurface.withValues(alpha: 0.12);
final BorderSide outlineBorder = BorderSide(
color: widget.borderSide == null
? getBorderColor()
: widget.borderSide!.color,
width: (widget.borderSide?.width == null
? widget.type == GFButtonType.outline2x
? 2.0
: 1.0
: widget.borderSide?.width)!,
);
final BorderSide shapeBorder = widget.type == GFButtonType.outline ||
widget.type == GFButtonType.outline2x
? outlineBorder
: widget.borderSide ??
BorderSide(
color: color,
width: 0,
);
ShapeBorder? shapeBorderType;
if (shape == GFIconButtonShape.pills) {
shapeBorderType = RoundedRectangleBorder(
borderRadius: BorderRadius.circular(20),
side: shapeBorder,
);
} else if (shape == GFIconButtonShape.square) {
shapeBorderType = RoundedRectangleBorder(
borderRadius: BorderRadius.circular(0),
side: shapeBorder,
);
} else if (shape == GFIconButtonShape.standard) {
shapeBorderType = RoundedRectangleBorder(
borderRadius: BorderRadius.circular(3),
side: shapeBorder,
);
} else if (shape == GFIconButtonShape.circle) {
shapeBorderType = RoundedRectangleBorder(
borderRadius: BorderRadius.circular(50),
side: shapeBorder,
);
}
if (widget.size == GFSize.SMALL) {
height = 30.0;
width = 30.0;
iconPixel = 18.0;
} else if (widget.size == GFSize.MEDIUM) {
height = 35.0;
width = 35.0;
iconPixel = 28.0;
} else if (widget.size == GFSize.LARGE) {
height = 40.0;
width = 40.0;
iconPixel = 38.0;
}
Widget result = Container(
// height: widget.shape == GFIconButtonShape.circle ? height + 6.0 : height,
// width: widget.shape == GFIconButtonShape.pills
// ? width + 10
// : widget.shape == GFIconButtonShape.circle
// ? height + 6
// : width,
padding: widget.padding,
child: SizedBox(
height: widget.iconSize != 0 ? widget.iconSize : iconPixel,
width: widget.iconSize != 0 ? widget.iconSize : iconPixel,
child: Align(
alignment: Alignment.center,
child: IconTheme.merge(
data: IconThemeData(
size: widget.iconSize > 0.0 ? widget.iconSize : iconPixel,
color: getIconColor(),
),
child: widget.icon,
),
),
),
);
if (widget.tooltip != null) {
result = Tooltip(
message: widget.tooltip!,
child: result,
);
}
BoxDecoration? getBoxShadow() {
if (widget.type != GFButtonType.transparent) {
if (widget.boxShadow == null && widget.buttonBoxShadow != true) {
return null;
} else {
return BoxDecoration(
color: widget.onPressed != null
? getColor()
: getDisabledFillColor(),
borderRadius: widget.shape == GFIconButtonShape.circle
? BorderRadius.circular(50)
: widget.shape == GFIconButtonShape.standard
? BorderRadius.circular(3)
: widget.shape == GFIconButtonShape.pills
? BorderRadius.circular(20)
: BorderRadius.zero,
boxShadow: [
widget.boxShadow == null && widget.buttonBoxShadow == true
? BoxShadow(
color: themeColor,
blurRadius: 1.5,
spreadRadius: 2,
offset: Offset.zero,
)
: widget.boxShadow ??
BoxShadow(
color: Theme.of(context).canvasColor,
blurRadius: 0,
spreadRadius: 0,
offset: Offset.zero,
)
]);
}
}
return null;
}
return Semantics(
button: true,
enabled: widget.onPressed != null,
child: Focus(
focusNode: widget.focusNode,
autofocus: widget.autofocus,
child: Container(
// height:
// widget.shape == GFIconButtonShape.circle ? height + 6 : height,
// width: widget.shape == GFIconButtonShape.pills
// ? width + 10
// : widget.shape == GFIconButtonShape.circle
// ? height + 6
// : width,
decoration: widget.type == GFButtonType.solid ? getBoxShadow() : null,
child: Material(
shape: widget.type == GFButtonType.transparent
? null
: widget.borderShape ?? shapeBorderType,
color:
widget.onPressed != null ? getColor() : getDisabledFillColor(),
type: widget.type == GFButtonType.transparent
? MaterialType.transparency
: MaterialType.button,
child: InkResponse(
onTap: widget.onPressed,
child: result,
focusColor: widget.focusColor ?? Theme.of(context).focusColor,
hoverColor: widget.hoverColor ?? Theme.of(context).hoverColor,
highlightColor:
widget.highlightColor ?? Theme.of(context).highlightColor,
splashColor: widget.splashColor ?? Theme.of(context).splashColor,
radius: math.max(
Material.defaultSplashRadius,
(widget.iconSize > 0.0
? widget.iconSize
: iconPixel +
math.min(
widget.padding.horizontal,
widget.padding.vertical,
)) *
0.7),
),
),
),
),
);
}
}