-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsquishy_toggle_button.dart
More file actions
319 lines (290 loc) · 7.59 KB
/
squishy_toggle_button.dart
File metadata and controls
319 lines (290 loc) · 7.59 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
import 'dart:ui' as ui;
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
/// WIP
const _kBoxSize = 140.0;
const _kMargin = 22.0;
const _kIconSize = 42.0;
const _kDefaultColor = Color(0xFFCCD0D4);
class SquishyToggle extends StatefulWidget {
static Map<String, WidgetBuilder> routeNameMap = {
"/SquishyToggle": (context) => SquishyToggle()
};
@override
_SquishyToggleState createState() => _SquishyToggleState();
}
class _SquishyToggleState extends State<SquishyToggle> {
bool addChecked = false;
bool removeChecked = false;
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.black,
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
buildButton(Icons.add, () {
setState(() {
addChecked = !addChecked;
});
}),
SizedBox(height: 24),
buildButton(Icons.remove, () {
setState(() {
removeChecked = !removeChecked;
});
}),
],
),
),
);
}
//0 15px 25px -4px rgba(0, 0, 0, 0.5),
// inset 0 -3px 4px -1px rgba(0, 0, 0, 0.2),
// 0 -10px 15px -1px rgba(255, 255, 255, 0.6),
// inset 0 3px 4px -1px rgba(255, 255, 255, 0.2),
// inset 0 0 5px 1px rgba(255, 255, 255, 0.8),
// inset 0 20px 30px 0 rgba(255, 255, 255, 0.2)
List<BoxShadow> getNormalShadowList() {
return [
BoxShadow(
offset: Offset(0, 15),
blurRadius: 25,
spreadRadius: -4,
color: Colors.black.withOpacity(0.5),
),
BoxShadow(
offset: Offset(0, -3),
blurRadius: 4,
spreadRadius: -1,
color: Colors.black.withOpacity(0.2),
),
BoxShadow(
offset: Offset(0, -10),
blurRadius: 15,
spreadRadius: -1,
color: Colors.white.withOpacity(0.6),
),
BoxShadow(
offset: Offset(0, 3),
blurRadius: 4,
spreadRadius: -1,
color: Colors.white.withOpacity(0.2),
),
BoxShadow(
blurRadius: 5,
spreadRadius: 1,
color: Colors.white.withOpacity(0.8),
),
BoxShadow(
offset: Offset(0, 20),
blurRadius: 30,
color: Colors.white.withOpacity(0.2),
),
];
}
//0 15px 25px -4px rgba(0, 0, 0, 0.4),
// inset 0 -8px 25px -1px rgba(255, 255, 255, 0.9),
// 0 -10px 15px -1px rgba(255, 255, 255, 0.6),
// inset 0 8px 20px 0 rgba(0, 0, 0, 0.2),
// inset 0 0 5px 1px rgba(255, 255, 255, 0.6)
List<BoxShadow> getCheckedShadowList() {
return [
BoxShadow(
offset: Offset(0, 15),
blurRadius: 25,
spreadRadius: -4,
color: Colors.black.withOpacity(0.4),
),
BoxShadow(
offset: Offset(0, -8),
blurRadius: 25,
spreadRadius: -1,
color: Colors.white.withOpacity(0.9),
),
BoxShadow(
offset: Offset(0, -10),
blurRadius: 15,
spreadRadius: -1,
color: Colors.white.withOpacity(0.6),
),
BoxShadow(
offset: Offset(0, 8),
blurRadius: 20,
color: Colors.black.withOpacity(0.2),
),
BoxShadow(
blurRadius: 5,
spreadRadius: 1,
color: Colors.white.withOpacity(0.6),
),
];
}
//inset 0 0 35px 5px rgba(0, 0, 0, 0.25),
// inset 0 2px 1px 1px rgba(255, 255, 255, 0.9),
// inset 0 -2px 1px 0 rgba(0, 0, 0, 0.25)
Decoration getRectangleDecoration() {
return BoxDecoration(
shape: BoxShape.rectangle,
color: _kDefaultColor,
borderRadius: BorderRadius.circular(8),
border: Border.all(
color: Colors.white.withOpacity(0.25),
),
boxShadow: [
BoxShadow(
blurRadius: 35,
spreadRadius: 5,
color: Colors.black.withOpacity(0.25),
),
BoxShadow(
offset: Offset(0, 2),
blurRadius: 1,
spreadRadius: 1,
color: Colors.white.withOpacity(0.9),
),
BoxShadow(
offset: Offset(0, -2),
blurRadius: 1,
color: Colors.black.withOpacity(0.25),
),
],
);
}
Widget getCircle(IconData iconData) {
return AnimatedContainer(
duration: const Duration(milliseconds: 300),
curve: Cubic(0.23, 1, 0.32, 1),
alignment: Alignment.center,
margin: EdgeInsets.all(_kMargin),
child: Opacity(
opacity: 0.9,
child: Icon(
iconData,
size: _kIconSize,
color: Colors.black.withOpacity(0.4),
),
),
decoration: BoxDecoration(
shape: BoxShape.circle,
color: _kDefaultColor,
boxShadow: addChecked ? getCheckedShadowList() : getNormalShadowList(),
),
);
}
Widget buildButton(IconData iconData, Function click) {
return GestureDetector(
onTap: click,
child: Container(
width: _kBoxSize,
height: _kBoxSize,
child: getCircle(iconData),
decoration: getRectangleDecoration(),
),
);
}
}
class InnerShadow extends SingleChildRenderObjectWidget {
const InnerShadow({
Key key,
this.color,
this.blur,
this.offset,
Widget child,
}) : super(key: key, child: child);
final Color color;
final double blur;
final Offset offset;
@override
RenderInnerShadow createRenderObject(BuildContext context) {
return RenderInnerShadow()
..color = color
..blur = blur
..offset = offset;
}
@override
void updateRenderObject(
BuildContext context, RenderInnerShadow renderObject) {
renderObject
..color = color
..blur = blur
..offset = offset;
}
}
class RenderInnerShadow extends RenderProxyBox {
RenderInnerShadow({
RenderBox child,
}) : super(child);
@override
bool get alwaysNeedsCompositing => child != null;
Color _color;
double _blur;
Offset _offset;
Color get color => _color;
set color(Color value) {
if (_color == value) return;
_color = value;
markNeedsPaint();
}
double get blur => _blur;
set blur(double value) {
if (_blur == value) return;
_blur = value;
markNeedsPaint();
}
Offset get offset => _offset;
set offset(Offset value) {
if (_offset == value) return;
_offset = value;
markNeedsPaint();
}
@override
void paint(PaintingContext context, Offset offset) {
if (child != null) {
var layerPaint = Paint()..color = Colors.white;
var canvas = context.canvas;
canvas.saveLayer(offset & size, layerPaint);
context.paintChild(child, offset);
var shadowPaint = Paint()
..blendMode = ui.BlendMode.srcATop
..imageFilter = ui.ImageFilter.blur(sigmaX: blur, sigmaY: blur)
..colorFilter = ui.ColorFilter.mode(color, ui.BlendMode.srcIn);
canvas.saveLayer(offset & size, shadowPaint);
// Invert the alpha to compute inner part.
var invertPaint = Paint()
..colorFilter = const ui.ColorFilter.matrix([
1,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
-1,
255,
]);
canvas.saveLayer(offset & size, invertPaint);
canvas.translate(_offset.dx, _offset.dy);
context.paintChild(child, offset);
context.canvas.restore();
context.canvas.restore();
context.canvas.restore();
}
}
@override
void visitChildrenForSemantics(RenderObjectVisitor visitor) {
if (child != null) visitor(child);
}
}