-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathindex.html
705 lines (698 loc) · 58.7 KB
/
index.html
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
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>100-Days-Of-Flutter-Widgets</title>
<link rel="stylesheet" href="https://stackedit.io/style.css" />
</head>
<body class="stackedit">
<div class="stackedit__left">
<div class="stackedit__toc">
<ul>
<li><a href="#days-of-flutter-widgets">100-Days-Of-Flutter-Widgets</a>
<ul>
<li><a href="#day-001---safearea---click-here-to-code">Day 001 - SafeArea - Click Here to Code</a></li>
<li><a href="#day-002---expanded---click-here-to-code">Day 002 - Expanded - Click Here to Code</a></li>
<li><a href="#day-003---wrap---click-here-to-code">Day 003 - Wrap - Click Here to Code</a></li>
<li><a href="#day-004---animatedcontainer---click-here-to-code">Day 004 - AnimatedContainer - Click Here to
Code</a></li>
<li><a href="#day-005---opacity---click-here-to-code">Day 005 - Opacity - Click Here to Code</a></li>
<li><a href="#day-006---futurebuilder---click-here-to-code">Day 006 - FutureBuilder - Click Here to Code</a>
</li>
<li><a href="#day-007---fadetransition---click-here-to-code">Day 007 - FadeTransition - Click Here to
Code</a></li>
<li><a href="#day-008---floatingactionbutton---click-here-to-code">Day 008 - FloatingActionButton - Click
Here to Code</a></li>
<li><a href="#day-009---pageview---click-here-to-code">Day 009 - PageView - Click Here to Code</a></li>
<li><a href="#day-010---table---click-here-to-code">Day 010 - Table - Click Here to Code</a></li>
<li><a href="#day-011---sliverappbar---click-here-to-code">Day 011 - SliverAppBar - Click Here to Code</a>
</li>
<li><a href="#day-012---slivergrid--list---click-here-to-code">Day 012 - SliverGrid & List - Click Here to
Code</a></li>
<li><a href="#day-013---fadeinimage---click-here-to-code">Day 013 - FadeInImage - Click Here to Code</a>
</li>
<li><a href="#day-014---streambuilder---click-here-to-code">Day 014 - StreamBuilder - Click Here to Code</a>
</li>
<li><a href="#day-015---inheritedwidget---click-here-to-code">Day 015 - InheritedWidget - Click Here to
Code</a></li>
<li><a href="#day-016---cliprrect---click-here-to-code">Day 016 - ClipRRect - Click Here to Code</a></li>
<li><a href="#day-017---hero---click-here-to-code">Day 017 - Hero - Click Here to Code</a></li>
<li><a href="#day-018---custompaint---click-here-to-code">Day 018 - CustomPaint - Click Here to Code</a>
</li>
<li><a href="#day-019---tooltip---click-here-to-code">Day 019 - ToolTip - Click Here to Code</a></li>
<li><a href="#day-020---fittedbox---click-here-to-code">Day 020 - FittedBox - Click Here to Code</a></li>
<li><a href="#day-021---layoutbuilder---click-here-to-code">Day 021 - LayoutBuilder - Click Here to Code</a>
</li>
<li><a href="#day-022---absorbpointer---click-here-to-code">Day 022 - AbsorbPointer - Click Here to Code</a>
</li>
<li><a href="#day-023---transform---click-here-to-code">Day 023 - Transform - Click Here to Code</a></li>
<li><a href="#day-024---backdropfilter---click-here-to-code">Day 024 - BackdropFilter - Click Here to
Code</a></li>
<li><a href="#day-025---align---click-here-to-code">Day 025 - Align - Click Here to Code</a></li>
<li><a href="#day-026---positioned---click-here-to-code">Day 026 - Positioned - Click Here to Code</a></li>
<li><a href="#day-027---animatedbuilder---click-here-to-code">Day 027 - AnimatedBuilder - Click Here to
Code</a></li>
<li><a href="#day-028---dismissible---click-here-to-code">Day 028 - Dismissible - Click Here to Code</a>
</li>
<li><a href="#day-029---sizedbox---click-here-to-code">Day 029 - SizedBox - Click Here to Code</a></li>
<li><a href="#day-030---valuelistenablebuilder---click-here-to-code">Day 030 - ValueListenableBuilder -
Click Here to Code</a></li>
<li><a href="#day-031---draggable---click-here-to-code">Day 031 - Draggable - Click Here to Code</a></li>
<li><a href="#day-032---animatedlist---click-here-to-code">Day 032 - AnimatedList - Click Here to Code</a>
</li>
<li><a href="#day-033---flexible---click-here-to-code">Day 033 - Flexible - Click Here to Code</a></li>
<li><a href="#day-034---mediaquery---click-here-to-code">Day 034 - MediaQuery - Click Here to Code</a></li>
<li><a href="#day-035---spacer---click-here-to-code">Day 035 - Spacer - Click Here to Code</a></li>
<li><a href="#day-036---animatedicon---click-here-to-code">Day 036 - AnimatedIcon - Click Here to Code</a>
</li>
<li><a href="#day-037---inheritedmodel---click-here-to-code">Day 037 - InheritedModel - Click Here to
Code</a></li>
<li><a href="#day-038---aspectratio---click-here-to-code">Day 038 - AspectRatio - Click Here to Code</a>
</li>
<li><a href="#day-039---limitedbox---click-here-to-code">Day 039 - LimitedBox - Click Here to Code</a></li>
<li><a href="#day-040---placeholder---click-here-to-code">Day 040 - Placeholder - Click Here to Code</a>
</li>
<li><a href="#day-041---richtext---click-here-to-code">Day 041 - RichText - Click Here to Code</a></li>
<li><a href="#day-042---reorderablelistview---click-here-to-code">Day 042 - ReorderableListView - Click Here
to Code</a></li>
<li><a href="#day-043---animatedswitcher---click-here-to-code">Day 043 - AnimatedSwitcher - Click Here to
Code</a></li>
<li><a href="#day-044---animatedpositioned---click-here-to-code">Day 044 - AnimatedPositioned - Click Here
to Code</a></li>
<li><a href="#day-045---animatedpadding---click-here-to-code">Day 045 - AnimatedPadding - Click Here to
Code</a></li>
<li><a href="#day-046---indexedstack---click-here-to-code">Day 046 - IndexedStack - Click Here to Code</a>
</li>
<li><a href="#day-047---semantics---click-here-to-code">Day 047 - Semantics - Click Here to Code</a></li>
<li><a href="#day-048---constrainedbox---click-here-to-code">Day 048 - ConstrainedBox - Click Here to
Code</a></li>
<li><a href="#day-049---stack---click-here-to-code">Day 049 - Stack - Click Here to Code</a></li>
<li><a href="#day-050---animatedopacity---click-here-to-code">Day 050 - AnimatedOpacity - Click Here to
Code</a></li>
<li><a href="#day-051---fractionallysizedbox---click-here-to-code">Day 051 - FractionallySizedBox - Click
Here to Code</a></li>
<li><a href="#day-052---listview---click-here-to-code">Day 052 - ListView - Click Here to Code</a></li>
<li><a href="#day-053---listtile---click-here-to-code">Day 053 - ListTile - Click Here to Code</a></li>
<li><a href="#day-054---container---click-here-to-code">Day 054 - Container - Click Here to Code</a></li>
<li><a href="#day-055---selectabletext---click-here-to-code">Day 055 - SelectableText - Click Here to
Code</a></li>
<li><a href="#day-056---datatable---click-here-to-code">Day 056 - DataTable - Click Here to Code</a></li>
<li><a href="#day-057---slider---click-here-to-code">Day 057 - Slider - Click Here to Code</a></li>
<li><a href="#day-058---alertdialog---click-here-to-code">Day 058 - AlertDialog - Click Here to Code</a>
</li>
<li><a href="#day-059---animatedcrossfade---click-here-to-code">Day 059 - AnimatedCrossFade - Click Here to
Code</a></li>
<li><a href="#day-060---draggablescrollablesheet---click-here-to-code">Day 060 - DraggableScrollableSheet -
Click Here to Code</a></li>
<li><a href="#day-061---colorfiltered---click-here-to-code">Day 061 - ColorFiltered - Click Here to Code</a>
</li>
<li><a href="#day-062---togglebuttons---click-here-to-code">Day 062 - ToggleButtons - Click Here to Code</a>
</li>
<li><a href="#day-063---cupertinoactionsheet---click-here-to-code">Day 063 - CupertinoActionSheet - Click
Here to Code</a></li>
<li><a href="#day-064---tweenanimationbuilder---click-here-to-code">Day 064 - TweenAnimationBuilder - Click
Here to Code</a></li>
<li><a href="#day-065---image---click-here-to-code">Day 065 - Image - Click Here to Code</a></li>
<li><a href="#day-066---defaulttabcontroller--tabbar---click-here-to-code">Day 066 - DefaultTabController &
TabBar - Click Here to Code</a></li>
<li><a href="#day-067---drawer---click-here-to-code">Day 067 - Drawer - Click Here to Code</a></li>
<li><a href="#day-068---snackbar---click-here-to-code">Day 068 - SnackBar - Click Here to Code</a></li>
<li><a href="#day-069---listwheelscrollview---click-here-to-code">Day 069 - ListWheelScrollView - Click Here
to Code</a></li>
<li><a href="#day-070---shadermask---click-here-to-code">Day 070 - ShaderMask - Click Here to Code</a></li>
<li><a href="#day-071---notificationlistener---click-here-to-code">Day 071 - NotificationListener - Click
Here to Code</a></li>
<li><a href="#day-072---builder---click-here-to-code">Day 072 - Builder - Click Here to Code</a></li>
<li><a href="#day-073---clippath---click-here-to-code">Day 073 - ClipPath - Click Here to Code</a></li>
<li><a href="#day-074---progressindicator---click-here-to-code">Day 074 - ProgressIndicator - Click Here to
Code</a></li>
<li><a href="#day-075---divider---click-here-to-code">Day 075 - Divider - Click Here to Code</a></li>
<li><a href="#day-076---ignorepointer---click-here-to-code">Day 076 - IgnorePointer - Click Here to Code</a>
</li>
<li><a href="#day-077---cupertinoactivityindicator---click-here-to-code">Day 077 -
CupertinoActivityIndicator - Click Here to Code</a></li>
<li><a href="#day-078---clipoval---click-here-to-code">Day 078 - ClipOval - Click Here to Code</a></li>
<li><a href="#day-079---animatedwidget---click-here-to-code">Day 079 - AnimatedWidget - Click Here to
Code</a></li>
<li><a href="#day-080---padding---click-here-to-code">Day 080 - Padding - Click Here to Code</a></li>
<li><a href="#day-081---checkboxlisttile---click-here-to-code">Day 081 - CheckboxListTile - Click Here to
Code</a></li>
<li><a href="#day-082---aboutdialog---click-here-to-code">Day 082 - AboutDialog - Click Here to Code</a>
</li>
<li><a href="#day-083---interactiveviewer---click-here-to-code">Day 083 - InteractiveViewer - Click Here to
Code</a></li>
<li><a href="#day-084---datepicker---click-here-to-code">Day 084 - DatePicker - Click Here to Code</a></li>
<li><a href="#day-085---timepicker---click-here-to-code">Day 085 - TimePicker - Click Here to Code</a></li>
<li><a href="#day-086---daterangepicker---click-here-to-code">Day 086 - DateRangePicker - Click Here to
Code</a></li>
<li><a href="#day-087---verticaldrag---click-here-to-code">Day 087 - VerticalDrag - Click Here to Code</a>
</li>
<li><a href="#day-088---horizontaldrag---click-here-to-code">Day 088 - HorizontalDrag - Click Here to
Code</a></li>
<li><a href="#day-089---pandrag---click-here-to-code">Day 089 - PanDrag - Click Here to Code</a></li>
<li><a href="#day-090---animationselection---click-here-to-code">Day 090 - AnimationSelection - Click Here
to Code</a></li>
<li><a href="#day-091---implicitanimations---click-here-to-code">Day 091 - ImplicitAnimations - Click Here
to Code</a></li>
<li><a href="#day-092---custom-implicit-animations---click-here-to-code">Day 092 - Custom Implicit
Animations - Click Here to Code</a></li>
<li><a href="#day-093---built-in-explicit-animations---click-here-to-code">Day 093 - Built-in Explicit
Animations - Click Here to Code</a></li>
<li><a href="#day-094---custom-explicit-animations---click-here-to-code">Day 094 - Custom Explicit
Animations - Click Here to Code</a></li>
<li><a href="#day-095---keys---click-here-to-code">Day 095 - Keys - Click Here to Code</a></li>
<li><a href="#day-096---isolate-by-compute---click-here-to-code">Day 096 - Isolate by Compute - Click Here
to Code</a></li>
<li><a href="#day-097---futures---click-here-to-code">Day 097 - Futures - Click Here to Code</a></li>
<li><a href="#day-098---streams---click-here-to-code">Day 098 - Streams - Click Here to Code</a></li>
<li><a href="#day-099---local-sqlite-database---click-here-to-code">Day 099 - Local SQLITE Database - Click
Here to Code</a></li>
<li><a href="#day-100---web-app-for-100-days-of-code---click-here-to-code">Day 100 - Web App for 100 Days of
code - Click Here to Code</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="stackedit__right">
<div class="stackedit__html">
<h1 id="days-of-flutter-widgets">100-Days-Of-Flutter-Widgets</h1>
<ul>
<li>This is the place where you can get all knowledge about the flutter in 100 Days.</li>
<li>Android App : <a
href="https://play.google.com/store/apps/details?id=com.sanjoke.hundred_days_of_flutter">https://play.google.com/store/apps/details?id=com.sanjoke.hundred_days_of_flutter</a>
</li>
<li>Website : <a
href="https://sanjay-rb.github.io/100-Days-Of-Flutter-Widgets/">https://sanjay-rb.github.io/100-Days-Of-Flutter-Widgets/</a>
</li>
</ul>
<p>I am plan to study all the widgets in flutter with there official <a
href="https://www.youtube.com/playlist?list=PLjxrf2q8roU23XGwz3Km7sQZFTdB996iG">Youtube Channel</a></p>
<p><a href="https://www.youtube.com/watch?v=b_sQ9bMltGU"><img src="https://img.youtube.com/vi/b_sQ9bMltGU/0.jpg"
alt="Introducing Widget of the Week!" width="150"></a></p>
<h2 id="day-001---safearea---click-here-to-code">Day 001 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day001_safearea.dart">SafeArea
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=lkF0TQJO0bA"><img src="https://img.youtube.com/vi/lkF0TQJO0bA/0.jpg"
alt="SafeArea" width="150"></a></p>
<h2 id="day-002---expanded---click-here-to-code">Day 002 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day002_expanded.dart">Expanded
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=_rnZaagadyo"><img src="https://img.youtube.com/vi/_rnZaagadyo/0.jpg"
alt="Expanded" width="150"></a></p>
<h2 id="day-003---wrap---click-here-to-code">Day 003 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day003_wrap.dart">Wrap
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=z5iw2SeFx2M"><img src="https://img.youtube.com/vi/z5iw2SeFx2M/0.jpg"
alt="Wrap" width="150"></a></p>
<h2 id="day-004---animatedcontainer---click-here-to-code">Day 004 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day004_animation_container.dart">AnimatedContainer
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=yI-8QHpGIP4"><img src="https://img.youtube.com/vi/yI-8QHpGIP4/0.jpg"
alt="AnimatedContainer" width="150"></a></p>
<h2 id="day-005---opacity---click-here-to-code">Day 005 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day005_opacity.dart">Opacity
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=9hltevOHQBw"><img src="https://img.youtube.com/vi/9hltevOHQBw/0.jpg"
alt="Opacity" width="150"></a></p>
<h2 id="day-006---futurebuilder---click-here-to-code">Day 006 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day006_future_builder.dart">FutureBuilder
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=ek8ZPdWj4Qo"><img src="https://img.youtube.com/vi/ek8ZPdWj4Qo/0.jpg"
alt="FutureBuilder" width="150"></a></p>
<h2 id="day-007---fadetransition---click-here-to-code">Day 007 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day007_fade_transition.dart">FadeTransition
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=rLwWVbv3xDQ"><img src="https://img.youtube.com/vi/rLwWVbv3xDQ/0.jpg"
alt="FadeTransition" width="150"></a></p>
<h2 id="day-008---floatingactionbutton---click-here-to-code">Day 008 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day008_floating_action_btn.dart">FloatingActionButton
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=2uaoEDOgk_I"><img src="https://img.youtube.com/vi/2uaoEDOgk_I/0.jpg"
alt="FloatingActionButton" width="150"></a></p>
<h2 id="day-009---pageview---click-here-to-code">Day 009 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day009_page_view.dart">PageView
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=J1gE9xvph-A"><img src="https://img.youtube.com/vi/J1gE9xvph-A/0.jpg"
alt="PageView" width="150"></a></p>
<h2 id="day-010---table---click-here-to-code">Day 010 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day010_table.dart">Table
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=_lbE0wsVZSw"><img src="https://img.youtube.com/vi/_lbE0wsVZSw/0.jpg"
alt="Table" width="150"></a></p>
<h2 id="day-011---sliverappbar---click-here-to-code">Day 011 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day011_sliver_appbar.dart">SliverAppBar
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=R9C5KMJKluE"><img src="https://img.youtube.com/vi/R9C5KMJKluE/0.jpg"
alt="SliverAppBar" width="150"></a></p>
<h2 id="day-012---slivergrid--list---click-here-to-code">Day 012 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day012_slivergrid_list.dart">SliverGrid
& List - Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=ORiTTaVY6mM"><img src="https://img.youtube.com/vi/ORiTTaVY6mM/0.jpg"
alt="SliverGrid & List" width="150"></a></p>
<h2 id="day-013---fadeinimage---click-here-to-code">Day 013 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day013_fadein_image.dart">FadeInImage
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=pK738Pg9cxc"><img src="https://img.youtube.com/vi/pK738Pg9cxc/0.jpg"
alt="FadeInImage" width="150"></a></p>
<h2 id="day-014---streambuilder---click-here-to-code">Day 014 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day014_stream_builder.dart">StreamBuilder
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=MkKEWHfy99Y"><img src="https://img.youtube.com/vi/MkKEWHfy99Y/0.jpg"
alt="StreamBuilder" width="150"></a></p>
<h2 id="day-015---inheritedwidget---click-here-to-code">Day 015 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/inherited_widget/">InheritedWidget
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=1t-8rBCGBYw"><img src="https://img.youtube.com/vi/1t-8rBCGBYw/0.jpg"
alt="InheritedWidget" width="150"></a></p>
<h2 id="day-016---cliprrect---click-here-to-code">Day 016 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day016_cliprrect.dart">ClipRRect
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=eI43jkQkrvs"><img src="https://img.youtube.com/vi/eI43jkQkrvs/0.jpg"
alt="ClipRRect" width="150"></a></p>
<h2 id="day-017---hero---click-here-to-code">Day 017 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day017_hero.dart">Hero
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=Be9UH1kXFDw"><img src="https://img.youtube.com/vi/Be9UH1kXFDw/0.jpg"
alt="Hero" width="150"></a></p>
<h2 id="day-018---custompaint---click-here-to-code">Day 018 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day018_custompaint.dart">CustomPaint
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=kp14Y4uHpHs"><img src="https://img.youtube.com/vi/kp14Y4uHpHs/0.jpg"
alt="CustomPaint" width="150"></a></p>
<h2 id="day-019---tooltip---click-here-to-code">Day 019 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day019_tooltip.dart">ToolTip
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=EeEfD5fI-5Q"><img src="https://img.youtube.com/vi/EeEfD5fI-5Q/0.jpg"
alt="ToolTip" width="150"></a></p>
<h2 id="day-020---fittedbox---click-here-to-code">Day 020 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day020_fittedbox.dart">FittedBox
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=T4Uehk3_wlY"><img src="https://img.youtube.com/vi/T4Uehk3_wlY/0.jpg"
alt="FittedBox" width="150"></a></p>
<h2 id="day-021---layoutbuilder---click-here-to-code">Day 021 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day021_layout_builder.dart">LayoutBuilder
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=IYDVcriKjsw"><img src="https://img.youtube.com/vi/IYDVcriKjsw/0.jpg"
alt="LayoutBuilder" width="150"></a></p>
<h2 id="day-022---absorbpointer---click-here-to-code">Day 022 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day022_absorb_pointer.dart">AbsorbPointer
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=65HoWqBboI8"><img src="https://img.youtube.com/vi/65HoWqBboI8/0.jpg"
alt="AbsorbPointer" width="150"></a></p>
<h2 id="day-023---transform---click-here-to-code">Day 023 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day023_transform.dart">Transform
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=9z_YNlRlWfA"><img src="https://img.youtube.com/vi/9z_YNlRlWfA/0.jpg"
alt="Transform" width="150"></a></p>
<h2 id="day-024---backdropfilter---click-here-to-code">Day 024 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day024_backdropfilter.dart">BackdropFilter
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=dYRs7Q1vfYI"><img src="https://img.youtube.com/vi/dYRs7Q1vfYI/0.jpg"
alt="BackdropFilter" width="150"></a></p>
<h2 id="day-025---align---click-here-to-code">Day 025 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day025_align.dart">Align
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=g2E7yl3MwMk"><img src="https://img.youtube.com/vi/g2E7yl3MwMk/0.jpg"
alt="Align" width="150"></a></p>
<h2 id="day-026---positioned---click-here-to-code">Day 026 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day026_positioned.dart">Positioned
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=EgtPleVwxBQ"><img src="https://img.youtube.com/vi/EgtPleVwxBQ/0.jpg"
alt="Positioned" width="150"></a></p>
<h2 id="day-027---animatedbuilder---click-here-to-code">Day 027 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day027_animated_builder.dart">AnimatedBuilder
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=N-RiyZlv8v8"><img src="https://img.youtube.com/vi/N-RiyZlv8v8/0.jpg"
alt="AnimatedBuilder" width="150"></a></p>
<h2 id="day-028---dismissible---click-here-to-code">Day 028 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day028_dismissible.dart">Dismissible
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=iEMgjrfuc58"><img src="https://img.youtube.com/vi/iEMgjrfuc58/0.jpg"
alt="Dismissible" width="150"></a></p>
<h2 id="day-029---sizedbox---click-here-to-code">Day 029 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day029_sized_box.dart">SizedBox
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=EHPu_DzRfqA"><img src="https://img.youtube.com/vi/EHPu_DzRfqA/0.jpg"
alt="SizedBox" width="150"></a></p>
<h2 id="day-030---valuelistenablebuilder---click-here-to-code">Day 030 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day030_value_listenable_builder.dart">ValueListenableBuilder
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=s-ZG-jS5QHQ"><img src="https://img.youtube.com/vi/s-ZG-jS5QHQ/0.jpg"
alt="ValueListenableBuilder" width="150"></a></p>
<h2 id="day-031---draggable---click-here-to-code">Day 031 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day031_draggable.dart">Draggable
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=QzA4c4QHZCY"><img src="https://img.youtube.com/vi/QzA4c4QHZCY/0.jpg"
alt="Draggable" width="150"></a></p>
<h2 id="day-032---animatedlist---click-here-to-code">Day 032 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day032_animated_list.dart">AnimatedList
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=ZtfItHwFlZ8"><img src="https://img.youtube.com/vi/ZtfItHwFlZ8/0.jpg"
alt="AnimatedList" width="150"></a></p>
<h2 id="day-033---flexible---click-here-to-code">Day 033 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day033_flexible.dart">Flexible
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=CI7x0mAZiY0"><img src="https://img.youtube.com/vi/CI7x0mAZiY0/0.jpg"
alt="Flexible" width="150"></a></p>
<h2 id="day-034---mediaquery---click-here-to-code">Day 034 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day034_media_query.dart">MediaQuery
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=A3WrA4zAaPw"><img src="https://img.youtube.com/vi/A3WrA4zAaPw/0.jpg"
alt="MediaQuery" width="150"></a></p>
<h2 id="day-035---spacer---click-here-to-code">Day 035 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day035_spacer.dart">Spacer
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=7FJgd7QN1zI"><img src="https://img.youtube.com/vi/7FJgd7QN1zI/0.jpg"
alt="Spacer" width="150"></a></p>
<h2 id="day-036---animatedicon---click-here-to-code">Day 036 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day036_animated_icon.dart">AnimatedIcon
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=pJcbh8pbvJs"><img src="https://img.youtube.com/vi/pJcbh8pbvJs/0.jpg"
alt="AnimatedIcon" width="150"></a></p>
<h2 id="day-037---inheritedmodel---click-here-to-code">Day 037 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day037_inherited_model.dart">InheritedModel
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=ml5uefGgkaA"><img src="https://img.youtube.com/vi/ml5uefGgkaA/0.jpg"
alt="InheritedModel" width="150"></a></p>
<h2 id="day-038---aspectratio---click-here-to-code">Day 038 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day038_aspect_ratio.dart">AspectRatio
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=XcnP3_mO_Ms"><img src="https://img.youtube.com/vi/XcnP3_mO_Ms/0.jpg"
alt="AspectRatio" width="150"></a></p>
<h2 id="day-039---limitedbox---click-here-to-code">Day 039 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day039_limited_box.dart">LimitedBox
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=uVki2CIzBTs"><img src="https://img.youtube.com/vi/uVki2CIzBTs/0.jpg"
alt="LimitedBox" width="150"></a></p>
<h2 id="day-040---placeholder---click-here-to-code">Day 040 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day040_placeholder.dart">Placeholder
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=LPe56fezmoo"><img src="https://img.youtube.com/vi/LPe56fezmoo/0.jpg"
alt="Placeholder" width="150"></a></p>
<h2 id="day-041---richtext---click-here-to-code">Day 041 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day041_richtext.dart">RichText
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=rykDVh-QFfw"><img src="https://img.youtube.com/vi/rykDVh-QFfw/0.jpg"
alt="RichText" width="150"></a></p>
<h2 id="day-042---reorderablelistview---click-here-to-code">Day 042 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day042_reorderable_list_view.dart">ReorderableListView
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=3fB1mxOsqJE"><img src="https://img.youtube.com/vi/3fB1mxOsqJE/0.jpg"
alt="ReorderableListView" width="150"></a></p>
<h2 id="day-043---animatedswitcher---click-here-to-code">Day 043 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day043_animated_switcher.dart">AnimatedSwitcher
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=2W7POjFb88g"><img src="https://img.youtube.com/vi/2W7POjFb88g/0.jpg"
alt="AnimatedSwitcher" width="150"></a></p>
<h2 id="day-044---animatedpositioned---click-here-to-code">Day 044 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day044_animated_position.dart">AnimatedPositioned
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=hC3s2YdtWt8"><img src="https://img.youtube.com/vi/hC3s2YdtWt8/0.jpg"
alt="AnimatedPositioned" width="150"></a></p>
<h2 id="day-045---animatedpadding---click-here-to-code">Day 045 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day045_animated_padding.dart">AnimatedPadding
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=PY2m0fhGNz4"><img src="https://img.youtube.com/vi/PY2m0fhGNz4/0.jpg"
alt="AnimatedPadding" width="150"></a></p>
<h2 id="day-046---indexedstack---click-here-to-code">Day 046 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day046_indexed_stack.dart">IndexedStack
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=_O0PPD1Xfbk"><img src="https://img.youtube.com/vi/_O0PPD1Xfbk/0.jpg"
alt="IndexedStack" width="150"></a></p>
<h2 id="day-047---semantics---click-here-to-code">Day 047 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day047_semantics.dart">Semantics
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=NvtMt_DtFrQ"><img src="https://img.youtube.com/vi/NvtMt_DtFrQ/0.jpg"
alt="Semantics" width="150"></a></p>
<h2 id="day-048---constrainedbox---click-here-to-code">Day 048 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day048_constrained_box.dart">ConstrainedBox
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=o2KveVr7adg"><img src="https://img.youtube.com/vi/o2KveVr7adg/0.jpg"
alt="ConstrainedBox" width="150"></a></p>
<h2 id="day-049---stack---click-here-to-code">Day 049 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day049_stack.dart">Stack
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=liEGSeD3Zt8"><img src="https://img.youtube.com/vi/liEGSeD3Zt8/0.jpg"
alt="Stack" width="150"></a></p>
<h2 id="day-050---animatedopacity---click-here-to-code">Day 050 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day050_animated_opacity.dart">AnimatedOpacity
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=QZAvjqOqiLY"><img src="https://img.youtube.com/vi/QZAvjqOqiLY/0.jpg"
alt="AnimatedOpacity " width="150"></a></p>
<h2 id="day-051---fractionallysizedbox---click-here-to-code">Day 051 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day051_fractionally_sized_box.dart">FractionallySizedBox
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=PEsY654EGZ0"><img src="https://img.youtube.com/vi/PEsY654EGZ0/0.jpg"
alt="FractionallySizedBox " width="150"></a></p>
<h2 id="day-052---listview---click-here-to-code">Day 052 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day052_list_view.dart">ListView
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=KJpkjHGiI5A"><img src="https://img.youtube.com/vi/KJpkjHGiI5A/0.jpg"
alt="ListView " width="150"></a></p>
<h2 id="day-053---listtile---click-here-to-code">Day 053 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day053_list_tile.dart">ListTile
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=l8dj0yPBvgQ"><img src="https://img.youtube.com/vi/l8dj0yPBvgQ/0.jpg"
alt="ListTile" width="150"></a></p>
<h2 id="day-054---container---click-here-to-code">Day 054 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day054_container.dart">Container
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=c1xLMaTUWCY"><img src="https://img.youtube.com/vi/c1xLMaTUWCY/0.jpg"
alt="Container" width="150"></a></p>
<h2 id="day-055---selectabletext---click-here-to-code">Day 055 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day055_selectable_text.dart">SelectableText
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=ZSU3ZXOs6hc"><img src="https://img.youtube.com/vi/ZSU3ZXOs6hc/0.jpg"
alt="SelectableText" width="150"></a></p>
<h2 id="day-056---datatable---click-here-to-code">Day 056 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day056_datatable.dart">DataTable
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=ktTajqbhIcY"><img src="https://img.youtube.com/vi/ktTajqbhIcY/0.jpg"
alt="DataTable" width="150"></a></p>
<h2 id="day-057---slider---click-here-to-code">Day 057 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day057_slider.dart">Slider
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=ufb4gIPDmEs"><img src="https://img.youtube.com/vi/ufb4gIPDmEs/0.jpg"
alt="Slider" width="150"></a></p>
<h2 id="day-058---alertdialog---click-here-to-code">Day 058 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day058_alert_dialog.dart">AlertDialog
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=75CsnyRXf5I"><img src="https://img.youtube.com/vi/75CsnyRXf5I/0.jpg"
alt="AlertDialog" width="150"></a></p>
<h2 id="day-059---animatedcrossfade---click-here-to-code">Day 059 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day059_animated_cross_fade.dart">AnimatedCrossFade
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=PGK2UUAyE54"><img src="https://img.youtube.com/vi/PGK2UUAyE54/0.jpg"
alt="AnimatedCrossFade" width="150"></a></p>
<h2 id="day-060---draggablescrollablesheet---click-here-to-code">Day 060 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day060_draggable_scrollable_sheet.dart">DraggableScrollableSheet
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=Hgw819mL_78"><img src="https://img.youtube.com/vi/Hgw819mL_78/0.jpg"
alt="DraggableScrollableSheet" width="150"></a></p>
<h2 id="day-061---colorfiltered---click-here-to-code">Day 061 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day061_color_filtered.dart">ColorFiltered
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=F7Cll22Dno8"><img src="https://img.youtube.com/vi/F7Cll22Dno8/0.jpg"
alt="ColorFiltered" width="150"></a></p>
<h2 id="day-062---togglebuttons---click-here-to-code">Day 062 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day062_toggle_buttons.dart">ToggleButtons
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=kVEguaQWGAY"><img src="https://img.youtube.com/vi/kVEguaQWGAY/0.jpg"
alt="ToggleButtons" width="150"></a></p>
<h2 id="day-063---cupertinoactionsheet---click-here-to-code">Day 063 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day063_cupertino_action_sheet.dart">CupertinoActionSheet
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=U-ao8p4A82k"><img src="https://img.youtube.com/vi/U-ao8p4A82k/0.jpg"
alt="CupertinoActionSheet" width="150"></a></p>
<h2 id="day-064---tweenanimationbuilder---click-here-to-code">Day 064 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day064_tween_animation_builder.dart">TweenAnimationBuilder
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=l9uHB8VXZOg"><img src="https://img.youtube.com/vi/l9uHB8VXZOg/0.jpg"
alt="TweenAnimationBuilder" width="150"></a></p>
<h2 id="day-065---image---click-here-to-code">Day 065 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day065_image.dart">Image
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=7oIAs-0G4mw"><img src="https://img.youtube.com/vi/7oIAs-0G4mw/0.jpg"
alt="Image" width="150"></a></p>
<h2 id="day-066---defaulttabcontroller--tabbar---click-here-to-code">Day 066 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day066_default_tab_controller_and_tab_bar.dart">DefaultTabController
& TabBar - Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=POtoEH-5l40"><img src="https://img.youtube.com/vi/POtoEH-5l40/0.jpg"
alt="DefaultTabController & TabBar" width="150"></a></p>
<h2 id="day-067---drawer---click-here-to-code">Day 067 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day067_drawer.dart">Drawer
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=WRj86iHihgY"><img src="https://img.youtube.com/vi/WRj86iHihgY/0.jpg"
alt="Drawer" width="150"></a></p>
<h2 id="day-068---snackbar---click-here-to-code">Day 068 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day068_snack_bar.dart">SnackBar
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=zpO6n_oZWw0"><img src="https://img.youtube.com/vi/zpO6n_oZWw0/0.jpg"
alt="SnackBar" width="150"></a></p>
<h2 id="day-069---listwheelscrollview---click-here-to-code">Day 069 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day069_list_wheel_scroll_view.dart">ListWheelScrollView
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=dUhmWAz4C7Y"><img src="https://img.youtube.com/vi/dUhmWAz4C7Y/0.jpg"
alt="ListWheelScrollView" width="150"></a></p>
<h2 id="day-070---shadermask---click-here-to-code">Day 070 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day070_shader_mask.dart">ShaderMask
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=7sUL66pTQ7Q"><img src="https://img.youtube.com/vi/7sUL66pTQ7Q/0.jpg"
alt="ShaderMask" width="150"></a></p>
<h2 id="day-071---notificationlistener---click-here-to-code">Day 071 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day071_notification_listener.dart">NotificationListener
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=cAnFbFoGM50"><img src="https://img.youtube.com/vi/cAnFbFoGM50/0.jpg"
alt="NotificationListener" width="150"></a></p>
<h2 id="day-072---builder---click-here-to-code">Day 072 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day072_builder.dart">Builder
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=xXNOkIuSYuA"><img src="https://img.youtube.com/vi/xXNOkIuSYuA/0.jpg"
alt="Builder" width="150"></a></p>
<h2 id="day-073---clippath---click-here-to-code">Day 073 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day073_clip_path.dart">ClipPath
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=oAUebVIb-7s"><img src="https://img.youtube.com/vi/oAUebVIb-7s/0.jpg"
alt="Builder" width="150"></a></p>
<h2 id="day-074---progressindicator---click-here-to-code">Day 074 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day074_progress_indicator.dart">ProgressIndicator
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=O-rhXZLtpv0"><img src="https://img.youtube.com/vi/O-rhXZLtpv0/0.jpg"
alt="ProgressIndicator" width="150"></a></p>
<h2 id="day-075---divider---click-here-to-code">Day 075 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day075_divider.dart">Divider
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=_liUC641Nmk"><img src="https://img.youtube.com/vi/_liUC641Nmk/0.jpg"
alt="Divider" width="150"></a></p>
<h2 id="day-076---ignorepointer---click-here-to-code">Day 076 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day076_ignore_pointer.dart">IgnorePointer
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=qV9pqHWxYgI"><img src="https://img.youtube.com/vi/qV9pqHWxYgI/0.jpg"
alt="IgnorePointer" width="150"></a></p>
<h2 id="day-077---cupertinoactivityindicator---click-here-to-code">Day 077 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day077_cupertino_activity_indicator.dart">CupertinoActivityIndicator
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=AENVH-ZqKDQ"><img src="https://img.youtube.com/vi/AENVH-ZqKDQ/0.jpg"
alt="CupertinoActivityIndicator" width="150"></a></p>
<h2 id="day-078---clipoval---click-here-to-code">Day 078 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day078_clip_oval.dart">ClipOval
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=vzWWDO6whIM"><img src="https://img.youtube.com/vi/vzWWDO6whIM/0.jpg"
alt="ClipOval" width="150"></a></p>
<h2 id="day-079---animatedwidget---click-here-to-code">Day 079 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day079_animated_widgets.dart">AnimatedWidget
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=LKKgYpC-EPQ"><img src="https://img.youtube.com/vi/LKKgYpC-EPQ/0.jpg"
alt="AnimatedWidget" width="150"></a></p>
<h2 id="day-080---padding---click-here-to-code">Day 080 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day080_padding.dart">Padding
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=oD5RtLhhubg"><img src="https://img.youtube.com/vi/oD5RtLhhubg/0.jpg"
alt="Padding" width="150"></a></p>
<h2 id="day-081---checkboxlisttile---click-here-to-code">Day 081 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day081_checkbox_list_tile.dart">CheckboxListTile
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=RkSqPAn9szs"><img src="https://img.youtube.com/vi/RkSqPAn9szs/0.jpg"
alt="CheckboxListTile" width="150"></a></p>
<h2 id="day-082---aboutdialog---click-here-to-code">Day 082 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day082_about_dialog.dart">AboutDialog
- Click Here to Code</a></h2>
<p><a href="https://www.youtube.com/watch?v=YFCSODyFxbE"><img src="https://img.youtube.com/vi/YFCSODyFxbE/0.jpg"
alt="AboutDialog" width="150"></a></p>
<h2 id="day-083---interactiveviewer---click-here-to-code">Day 083 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day083_interactive_viewer.dart">InteractiveViewer
- Click Here to Code</a></h2>
<p><a href="https://master-api.flutter.dev/flutter/widgets/InteractiveViewer-class.html"><img
src="https://img.youtube.com/vi/4AoFA19gbLo/0.jpg" alt="InteractiveViewer" width="150"></a></p>
<h2 id="day-084---datepicker---click-here-to-code">Day 084 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day084_date_picker.dart">DatePicker
- Click Here to Code</a></h2>
<p><a href="https://api.flutter.dev/flutter/material/showDatePicker.html"><img
src="https://img.youtube.com/vi/4AoFA19gbLo/0.jpg" alt="DatePicker" width="150"></a></p>
<h2 id="day-085---timepicker---click-here-to-code">Day 085 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day085_time_picker.dart">TimePicker
- Click Here to Code</a></h2>
<p><a href="https://api.flutter.dev/flutter/material/showTimePicker.html"><img
src="https://img.youtube.com/vi/4AoFA19gbLo/0.jpg" alt="TimePicker" width="150"></a></p>
<h2 id="day-086---daterangepicker---click-here-to-code">Day 086 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day086_date_range_picker.dart">DateRangePicker
- Click Here to Code</a></h2>
<p><a href="https://api.flutter.dev/flutter/material/showDateRangePicker.html"><img
src="https://img.youtube.com/vi/4AoFA19gbLo/0.jpg" alt="DateRangePicker" width="150"></a></p>
<h2 id="day-087---verticaldrag---click-here-to-code">Day 087 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day087_vertical_drag.dart">VerticalDrag
- Click Here to Code</a></h2>
<p><a href="https://flutter.dev/docs/development/ui/advanced/gestures"><img
src="https://img.youtube.com/vi/4AoFA19gbLo/0.jpg" alt="VerticalDrag" width="150"></a></p>
<h2 id="day-088---horizontaldrag---click-here-to-code">Day 088 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day088_horizontal_drag.dart">HorizontalDrag
- Click Here to Code</a></h2>
<p><a href="https://flutter.dev/docs/development/ui/advanced/gestures"><img
src="https://img.youtube.com/vi/4AoFA19gbLo/0.jpg" alt="HorizontalDrag" width="150"></a></p>
<h2 id="day-089---pandrag---click-here-to-code">Day 089 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day089_pan_drag.dart">PanDrag
- Click Here to Code</a></h2>
<p><a href="https://flutter.dev/docs/development/ui/advanced/gestures"><img
src="https://img.youtube.com/vi/4AoFA19gbLo/0.jpg" alt="PanDrag" width="150"></a></p>
<h2 id="day-090---animationselection---click-here-to-code">Day 090 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day090_animation_flutter.dart">AnimationSelection
- Click Here to Code</a></h2>
<p><a href="https://youtu.be/GXIJJkq_H8g"><img src="https://img.youtube.com/vi/GXIJJkq_H8g/0.jpg"
alt="AnimationSelection" width="150"></a></p>
<h2 id="day-091---implicitanimations---click-here-to-code">Day 091 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day091_implicit_animations.dart">ImplicitAnimations
- Click Here to Code</a></h2>
<p><a href="https://youtu.be/IVTjpW3W33s"><img src="https://img.youtube.com/vi/IVTjpW3W33s/0.jpg"
alt="ImplicitAnimations" width="150"></a></p>
<h2 id="day-092---custom-implicit-animations---click-here-to-code">Day 092 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day092_custom_implicit_animations.dart">Custom
Implicit Animations - Click Here to Code</a></h2>
<p><a href="https://youtu.be/6KiPEqzJIKQ"><img src="https://img.youtube.com/vi/6KiPEqzJIKQ/0.jpg"
alt="Custom Implicit Animations" width="150"></a></p>
<h2 id="day-093---built-in-explicit-animations---click-here-to-code">Day 093 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day093_built_in_explicit_animations.dart">Built-in
Explicit Animations - Click Here to Code</a></h2>
<p><a href="https://youtu.be/CunyH6unILQ"><img src="https://img.youtube.com/vi/CunyH6unILQ/0.jpg"
alt="Built-in Explicit Animations" width="150"></a></p>
<h2 id="day-094---custom-explicit-animations---click-here-to-code">Day 094 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day094_custom_explicit_animations.dart">Custom
Explicit Animations - Click Here to Code</a></h2>
<p><a href="https://youtu.be/fneC7t4R_B0"><img src="https://img.youtube.com/vi/fneC7t4R_B0/0.jpg"
alt="Custom Explicit Animations" width="150"></a></p>
<h2 id="day-095---keys---click-here-to-code">Day 095 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day095_keys.dart">Keys
- Click Here to Code</a></h2>
<p><a href="https://youtu.be/kn0EOS-ZiIc"><img src="https://img.youtube.com/vi/kn0EOS-ZiIc/0.jpg" alt="Keys"
width="150"></a></p>
<h2 id="day-096---isolate-by-compute---click-here-to-code">Day 096 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day096_isolates.dart">Isolate
by Compute - Click Here to Code</a></h2>
<p><a href="https://youtu.be/zHoFG2x5ZsQ"><img src="https://img.youtube.com/vi/zHoFG2x5ZsQ/0.jpg"
alt="Isolate by Compute" width="150"></a></p>
<h2 id="day-097---futures---click-here-to-code">Day 097 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day097_futures.dart">Futures
- Click Here to Code</a></h2>
<p><a href="https://youtu.be/OTS-ap9_aXc"><img src="https://img.youtube.com/vi/OTS-ap9_aXc/0.jpg" alt="Futures"
width="150"></a></p>
<h2 id="day-098---streams---click-here-to-code">Day 098 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day098_streams.dart">Streams
- Click Here to Code</a></h2>
<p><a href="https://youtu.be/nQBpOIHE4eE"><img src="https://img.youtube.com/vi/nQBpOIHE4eE/0.jpg" alt="Streams"
width="150"></a></p>
<h2 id="day-099---local-sqlite-database---click-here-to-code">Day 099 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day099_sqflite.dart">Local
SQLITE Database - Click Here to Code</a></h2>
<p><a href="https://youtu.be/CXyylpd5wqU"><img src="https://img.youtube.com/vi/CXyylpd5wqU/0.jpg"
alt="Local SQLITE Database" width="150"></a></p>
<h2 id="day-100---web-app-for-100-days-of-code---click-here-to-code">Day 100 - <a
href="https://github.com/sanjaysanju618/100-Days-Of-Flutter-Widgets/blob/master/hundred_days_of_flutter_widget/lib/day100_completed_web_app.dart">Web
App for 100 Days of code - Click Here to Code</a></h2>
<p><a href="https://flutter.dev/web"><img
src="https://th.bing.com/th/id/OIP.Fnunzf_4hFHhv_AHBugUEgHaEK?pid=Api&rs=1"
alt="Web App for 100 Days of code" width="150"></a></p>
</div>
</div>
</body>
</html>