forked from theniceboy/nvim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdart.snippets
458 lines (375 loc) · 8.34 KB
/
dart.snippets
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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
snippet imat "Import Material"
import 'package:flutter/material.dart';
endsnippet
snippet fn "Async Function"
void ${1:func}() {
${0}
}
endsnippet
snippet afn "Async Function"
Future<void> ${1:func}() async {
${0}
}
endsnippet
snippet msa "MaterialStateProperty.all"
MaterialStateProperty.all(${0}),
endsnippet
snippet msr "MaterialStateProperty.resolveWith"
MaterialStateProperty.resolveWith<${1}>((states) => states.contains(MaterialState.pressed) ? null : null),
endsnippet
snippet wh "Width and height"
width: ${1},
height: ${0},
endsnippet
snippet iwh "Infinity Width and height"
width: double.infinity,
height: double.infinity,
endsnippet
snippet oprs "onPressed"
final void Function() onPressed;
endsnippet
snippet pa "Padding"
padding: EdgeInsets.only(${1:left: ${2:0}}${3:, right: ${4:0}}${5:, top: ${6:0}}${7:, bottom: ${8:0}}),
endsnippet
snippet paa "Padding All"
padding: EdgeInsets.all(${1:8.0}),
endsnippet
snippet pah "Padding Horizontal"
padding: EdgeInsets.only(${1:left: ${2:0}}${3:, right: ${4:0}}),
endsnippet
snippet pav "Padding Vertical"
padding: EdgeInsets.only(${1:top: ${2:0}}${3:, bottom: ${4:0}}),
endsnippet
snippet pah "Padding Horizontal"
padding: EdgeInsets.only(left: ${1:0}, right: ${1}),${0}
endsnippet
snippet pat "Padding Top"
padding: EdgeInsets.only(top: ${0:0}),
endsnippet
snippet pab "Padding Bottom"
padding: EdgeInsets.only(bottom: ${0:0}),
endsnippet
snippet pal "Padding Left"
padding: EdgeInsets.only(left: ${0:0}),
endsnippet
snippet par "Padding Right"
padding: EdgeInsets.only(right: ${0:0}),
endsnippet
snippet mar "Margin"
margin: EdgeInsets.only(${1:left: ${2:0}}${3:, right: ${4:0}}${5:, top: ${6:0}}${7:, bottom: ${8:0}}),
endsnippet
snippet mara "Margin All"
margin: EdgeInsets.all(${1:8.0}),
endsnippet
snippet marh "Margin Horizontal"
margin: EdgeInsets.only(left: ${1:0}, right: ${1}),${0}
endsnippet
snippet mart "Margin Top"
margin: EdgeInsets.only(top: ${0:0}),
endsnippet
snippet marb "Margin Bottom"
margin: EdgeInsets.only(bottom: ${0:0}),
endsnippet
snippet marl "Margin Left"
margin: EdgeInsets.only(left: ${0:0}),
endsnippet
snippet marr "Margin Right"
margin: EdgeInsets.only(right: ${0:0}),
endsnippet
snippet marv "Margin Vertical"
margin: EdgeInsets.only(top: ${1:0}, bottom: ${1}),${0}
endsnippet
snippet br "BorderRadius"
borderRadius: BorderRadius.all(Radius.circular(${0})),
endsnippet
snippet sbr "Shape with BorderRadius"
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.all(Radius.circular(${0})),
),
endsnippet
snippet dur "Duration"
duration: const Duration(milliseconds: ${0}),
endsnippet
snippet dec "BoxDecoration"
decoration: BoxDecoration(
color: ${1},
),${0}
endsnippet
snippet ba "BorderRadius"
border: Border.all(
width: ${1},
color: ${2},
),
endsnippet
snippet mai "MainAxis"
mainAxisAlignment: MainAxisAlignment.${0}
endsnippet
snippet crs "CrossAxis"
crossAxisAlignment: CrossAxisAlignment.${0}
endsnippet
snippet row "Row"
Row(children: [
${0}
]),
endsnippet
snippet rowa "Row with alignment"
Row(
mainAxisAlignment: MainAxisAlignment.${1:start},
crossAxisAlignment: CrossAxisAlignment.${2:start},
children: [
${0}
],
),
endsnippet
snippet col "Column"
Column(children: [
${0}
]),
endsnippet
snippet cola "Column with alignment"
Column(
mainAxisAlignment: MainAxisAlignment.${1:start},
crossAxisAlignment: CrossAxisAlignment.${2:start},
children: [
${0}
],
),
endsnippet
snippet sta "Stack"
Stack(children: [
${0}
]),
endsnippet
snippet cs "const SizedBox()"
const SizedBox()${0}
endsnippet
snippet co "Container"
Container()${0}
endsnippet
snippet con "Container"
Container(
child: ${0},
)
endsnippet
snippet exp "Expanded"
Expanded(
child: ${0},
),
endsnippet
snippet flx "Flexible"
Flexible(
child: ${0},
),
endsnippet
snippet cons "Container Sized"
Container(
width: ${1},
height: ${2},
child: ${0},
)
endsnippet
snippet cen "Center"
Center(child: ${0})
endsnippet
snippet t "Text"
Text("${1}"),${0}
endsnippet
snippet ts "Text with text style"
Text(${1}, style: ${2}),${0}
endsnippet
snippet rts "Rich Text with text style"
RichText(
text: TextSpan(children: [
TextSpan(text: ${1}, style: ${2}),${0}
]),
),
endsnippet
snippet ss "TextStyle"
TextStyle(
color: ${1},
fontSize: ${2},
fontWeight: w[${3}]
);${0}
endsnippet
snippet nbuilder "NotifierBuilder"
NotifierBuilder(
notifier: null,
builder: (context) {
return Container();
},
)
endsnippet
snippet sw "SizedBox with width"
const SizedBox(width: ${1}),${0}
endsnippet
snippet sh "SizedBox with height"
const SizedBox(height: ${1}),${0}
endsnippet
snippet swh "SizedBox with width and height"
SizedBox(width: ${1}, height: ${2}),${0}
endsnippet
snippet scaf "Scaffold"
Scaffold(
appBar: AppBar(
title: Text('${1:Title}'),
),
body: ${2:Container()}${0},
);
endsnippet
snippet sf "New Stateful Widget" b
class ${1:name} extends StatefulWidget {
${1:name}({Key? key}) : super(key: key);
@override
_${1:WidgetName}State createState() => _${1:WidgetName}State();
}
class _${1:index}State extends State<${1:index}> {
@override
Widget build(context) {
return ${2:Container()};
}
}
endsnippet
snippet sl "New Stateless Widget" b
class ${1:name} extends StatelessWidget {
${1:name}({Key? key}) : super(key: key);
@override
Widget build(context) {
return ${2:Container()};
}
}
endsnippet
snippet wt "Colors.white"
color: colorWhite,
endsnippet
snippet inits "initState"
@override
void initState() {
${0}
super.initState();
}
endsnippet
snippet dispose "dispose"
@override
void dispose() {
${0:}
super.dispose();
}
endsnippet
snippet listv "ListView.builder"
ListView.builder(
itemCount: ${1:1},
itemBuilder: (context, index) {
return ${2:Container()};
},
)
endsnippet
snippet future "Future Builder"
FutureBuilder(
future: ${1:Future},
initialData: ${2:InitialData},
builder: (context, snapshot) {
if (snapshot.connectionState == ConnectionState.done)
return ${3:Container();}
return ${4:Container();}
},
)
endsnippet
snippet stream "Stream Builder"
StreamBuilder<${1:dynamic}>(
stream: ${2:yourStream},
builder: (context, snapshot) {
if (snapshot.hasData) {
// TODO: do something with the data
return ${3:Container()};
} else if (snapshot.hasError) {
// TODO: do something with the error
return ${4:Text(snapshot.error.toString())};
}
// TODO: the data is not ready, show a loading indicator
return ${5:Center(child: CircularProgressIndicator())};
},
),
endsnippet
snippet try "try catch"
try {
${0}
} catch (e, stack) {
print(e);
print(stack);
}
endsnippet
snippet for "standard for loop without brackets"
for (var ${1:i} = 0; ${1:i} < ${2:n}; ++${1:i})
${3:// TODO}
endsnippet
snippet forr "standard for loop"
for (var ${1:i} = 0; ${1:i} < ${2:n}; ++${1:i}) {
${3:// TODO}
}
endsnippet
snippet fori "For in loop"
for (var ${1:item} in ${2:object}) {
${3:// TODO}
}
endsnippet
snippet ssm "Multi-line Set State"
setState(() {
${1:// TODO}
});
endsnippet
snippet sss "Single-line Set State"
setState(() => ${1:/* TODO */} );
endsnippet
snippet sst "Empty Set State"
setState(() {})${0}
endsnippet
snippet rf "Request focus"
FocusScope.of(context).requestFocus(${1:FocusNode()})${0}
endsnippet
snippet rfn "Request focusnode (new)"
FocusScope.of(context).requestFocus(FocusNode());
endsnippet
snippet push "Navigator push"
Navigator.of(context).push(
MaterialPageRoute(builder: (context) => ${1:Page()}),
)${0}
endsnippet
snippet pop "Navigator pop"
Navigator.of(context).pop(${1})${0}
endsnippet
snippet rmb "RawMaterialButton"
RawMaterialButton(
elevation: ${1:0},
onPressed: () {},
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.all(Radius.circular(${2:5})),
),
fillColor: ${3:Colors.transparent},
child: ${5:Container()},
),
endsnippet
snippet mo "Get MediaQuery"
MediaQuery.of(context)${0}
endsnippet
snippet st "print();"
print(${0});
endsnippet
snippet sbj "Behavior subject"
Stream<${1:int}> get ${2:my}Stream => _${2:my}Subject.stream;
BehaviorSubject<${1}> _${2:my}Subject;
_${2:my}Subject = BehaviorSubject<${1}>();
endsnippet
snippet f "Function"
() =>
endsnippet
snippet adelay "await Future.delayed"
await Future.delayed(const Duration(milliseconds: ${1:300}));
endsnippet
snippet delay "Future.delayed"
Future.delayed(const Duration(milliseconds: ${1:300})).then((_) {
${2}
});
endsnippet
snippet now "DateTime.now()"
DateTime.now()
endsnippet