-
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
/
README.md
851 lines (586 loc) · 65.1 KB
/
README.md
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
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
[<img src="https://user-images.githubusercontent.com/1295961/45949308-cbb2f680-bffb-11e8-8054-28c35ed6d132.png" align="center" width="850">](https://flutter.dev/)
<p align="center">
<a href="https://github.com/sindresorhus/awesome">
<img alt="Awesome" src="https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg" />
</a>
<a href="https://twitter.com/blueaquilae">
<img alt="Awesome" src="https://img.shields.io/twitter/url/https/twitter.com/blueaquilae.svg?style=social&label=Follow%20%40blueaquilae" />
</a>
</p>
<a href="https://flutter.dev/">Flutter</a> is Google’s UI toolkit for building beautiful, natively compiled applications for mobile, web, and desktop from a single codebase.
If you appreciate the content 📖, support projects visibility, give 👍| ⭐| 👏
<a href="https://getstream.io/chat/sdk/flutter/?utm_source=Github&utm_medium=Github_Repo_Content_Ad&utm_content=Developer&utm_campaign=Github_Mar2022_FlutterChatSDK&utm_term=Awesome">
<img src="https://user-images.githubusercontent.com/1295961/160238710-1b5a987a-478e-41b4-b11c-37be8670a8c9.png"/>
</a>
#### Demonstrations
<div style="text-align: center"><table><tr>
<td style="text-align: center, width: 180">
[Instant Chat Integration](https://getstream.io/chat/sdk/flutter/?utm_source=Github&utm_medium=Github_Repo_Content_Ad&utm_content=Developer&utm_campaign=Github_Mar2022_FlutterChatSDK&utm_term=Awesome)
<a href="https://getstream.io/chat/sdk/flutter/?utm_source=Github&utm_medium=Github_Repo_Content_Ad&utm_content=Developer&utm_campaign=Github_Mar2022_FlutterChatSDK&utm_term=Awesome">
<img alt="Stream" src="./.github/stream-animation.gif" />
</a>
[with Stream!](https://getstream.io/chat/sdk/flutter/?utm_source=Github&utm_medium=Github_Repo_Content_Ad&utm_content=Developer&utm_campaign=Github_Mar2022_FlutterChatSDK&utm_term=Awesome)
</td>
<td style="text-align: center">
<img width="180" alt="BMW" src="https://user-images.githubusercontent.com/1295961/160239273-ce881c0c-c3de-4953-9448-dfd12d7ffe30.png">
BMW
Connect
</td>
<td style="text-align: center">
<img width="180" alt="BlueAquilae Twitter Meteo" src="https://user-images.githubusercontent.com/1295961/160238906-540a4a0d-b721-4c73-8b58-58b96b5e6414.png">
Calendar
Meteo
</td>
</tr></table></div>
## Contents
- [Articles](#articles)
- [Videos](#videos)
- [Components](#components)
- [Navigation](#navigation)
- [Template](#templates)
- [Plugins](#plugins)
- [Frameworks](#frameworks)
- [Experimental](#experimental)
- [Open Source Apps](#open-source-apps)
- [Web](#web)
- [Utilities](#utilities)
- [Bonus](#bonus)
- [Community](#community)
## Articles
### Introduction
- [Google IO 2018](https://medium.com/flutter-io/building-beautiful-flexible-user-interfaces-with-flutter-material-theming-and-official-material-13ae9279ef19) - Building beautiful, flexible user interfaces
- [Presentation](https://speakerdeck.com/hjjunior/why-i-chose-flutter) - by [Helio S. Junior](https://github.com/hjJunior)
- [Flutter Web](https://medium.com/flutter-community/ins-and-outs-of-flutter-web-7a82721dc19a) - Ins and Outs of Flutter Web by [Nash](https://github.com/nash0x7e2)
### Websites / Blogs
- [Welcome to Flutter](https://didierboelens.com) - English and French blog dedicated to providing practical solutions to most asked questions about Flutter by Didier Boelens
- [SZAŁKO-BLOG](https://marcinszalek.pl/) - Step by step advanced design by [Marcin Szalek](https://marcinszalek.pl).
- [Flutter by Example](https://flutterbyexample.com/) - Tutorials based on Redux, Firebase, Custom Animations, and UI
- [Flutter Institute](https://flutter.institute/) - Very original content and tutorials by [Brian Armstrong](https://twitter.com/flutterinst)
- [Norbert](https://medium.com/@norbertkozsir) - In depth articles, features and app creation by [Norbert515](https://github.com/Norbert515)
- [Flutter Tips](https://medium.com/@diegoveloper) - Articles, tips & tricks in the development by [Diego Velásquez](https://twitter.com/diegoveloper)
- [FilledStacks](https://www.filledstacks.com/) - Tutorials and guides on development by [Dane Mackier](https://www.instagram.com/filledstacks/)
- [Awesome Flutter tips](https://github.com/erluxman/awesomefluttertips/) - Tips to help developers increase productivity by [erluxman](https://twitter.com/erluxman/).
- [Flutter4Fun](http://flutter4fun.com) - UI Challenge implementation blog by [Iman Khoshabi](https://github.com/imaNNeoFighT).
- [Flutter Stack Weekly](https://blog.canopas.com/tagged/canopas-flutter-weekly) - Weekly newsletter on new development and updates curated by [Jimmy Sanghani](https://twitter.com/jimmys0251)
### Tutorial
- [Animated Chat](https://codelabs.developers.google.com/codelabs/flutter/#0) - Building beautiful UIs by Google Code Labs
- [Firebase Chat](https://codelabs.developers.google.com/codelabs/flutter-firebase/#0) - Firebase integration by Google Code Labs
- [Flutter and Dart development](https://suragch.medium.com/flutter-and-dart-development-articles-981be9ef7b23) - Articles and tutorials by [Suragch](https://twitter.com/Suragch1)
### Beginner
- [Roadmap to Flutter Development](https://github.com/olexale/flutter_roadmap) [5433⭐] - Visual roadmap with principles, patterns, and frameworks for Flutter newbies by [Olexandr Leuschenko](https://github.com/olexale).
- [Layout Cheat Sheet](https://medium.com/flutter-community/flutter-layout-cheat-sheet-5363348d037e) - Extensive examples of layout widgets by [Tomek Polański](https://github.com/tomaszpolanski)
- [Getting Started with Flutter](https://www.raywenderlich.com/24499516-getting-started-with-flutter) - by [raywenderlich.com](https://www.raywenderlich.com)
- [Beginner's Guide](https://github.com/antz22/ultimate-guide-to-flutter) [377⭐] - Comprehensive guide to the basics of Flutter and Firebase by [Anthony](https://github.com/antz22)
### Intermediate
- [Flutter state management for minimalists](https://suragch.medium.com/flutter-state-management-for-minimalists-4c71a2f2f0c1?sk=6f9cedfb550ca9cc7f88317e2e7055a0) - Understanding app architecture without relying on third-party frameworks by [Suragch](https://twitter.com/Suragch1). See also [State Management](#state-management)
### Advanced
- [Rendering Pipeline](https://www.youtube.com/watch?v=UUfXWzp0-DU) [1140👍] and [Let's build a render tree](https://www.youtube.com/watch?v=VsYbFnucHsU) - Engine architecture by Adam Barth
- [Render Objects](https://medium.com/flutter-community/flutter-what-are-widgets-renderobjects-and-elements-630a57d05208) - What are Widgets, RenderObjects and Elements? by [Norbert515](https://github.com/Norbert515)
- [Streams and RxDart](https://skillsmatter.com/skillscasts/12254-flutter-with-streams-and-rxdart) - Skillmatters presentation by [Brian Egan](https://github.com/brianegan)
- [Gesture System](https://medium.com/flutter-community/flutter-deep-dive-gestures-c16203b3434f) - Flutter Deep Dive: Gestures by [Nash](https://github.com/nash0x7e2)
- [Schemas](https://www.didierboelens.com/2018/06/widget---state---context---inheritedwidget/) - Widget, State, Context and InheritedWidget explanations by [Didier Boelens](https://didierboelens.com)
- [Rendering Engine Tutorial](https://medium.com/saugo360/flutters-rendering-engine-a-tutorial-part-1-e9eff68b825d) - Flutter's Rendering Engine: A Tutorial by [AbdulRahman AlHamali](https://github.com/AbdulRahmanAlHamali/)
- [Inherited Widget](https://medium.com/@chemamolins/is-flutters-inheritedwidget-a-good-fit-to-hold-app-state-2ec5b33d023e) - Flutter’s InheritedWidget to hold app state by [Chema Molins](https://github.com/jmolins)
- [From Mobile to Desktop](https://medium.com/flutter-community/flutter-from-mobile-to-desktop-93635e8de64e) - Building applications for smartphones and desktops by [Marcelo Henrique Neppel](https://neppel.com.br)
- [Accessibility widgets](https://medium.com/flutter-community/a-deep-dive-into-flutters-accessibility-widgets-eb0ef9455bc) - Deep dive information about all aspects of accessibility by [Muhammed Salih Güler](https://twitter.com/salihgueler)
- [Profiling w/ Timeline](https://medium.com/flutter-io/profiling-flutter-applications-using-the-timeline-a1a434964af3) - Using the Timeline allows you to find and address specific performance issues in your application by [Chinmay Garde](https://medium.com/@chinmaygarde)
## Advanced graphics rendering
- [Shaders](https://wolfenrain.medium.com/flutter-shaders-an-initial-look-d9eb98d3fd7a) - Fragment shaders, set it up, how it works and making it work by [Jochum van der Ploeg](https://twitter.com/wolfenrain)
### Howtos
- [Parallax Effect](https://marcinszalek.pl/flutter/tickets-challenge-parallax) - Parallax & non linear animation by [Marcin Szalek](https://marcinszalek.pl).
- [Build Flavor](https://medium.com/@salvatoregiordanoo/flavoring-flutter-392aaa875f36) - Define build configurations and switch them by [Salvatore Giordano](https://medium.com/@salvatoregiordanoo)
- [Build Flavor](https://medium.com/@angeloavv/easily-build-flavors-in-flutter-android-and-ios-with-flutter-flavorizr-d48cbf956e4) - Easily build flavors in Flutter (Android and iOS) with flutter_flavorizr by [Angelo Cassano](https://medium.com/@angeloavv)
## Videos
- [Boring Show](https://www.youtube.com/watch?v=CPmN4-i9zC8&list=PLOU2XLYxmsIK0r_D-zWcmJ1plIcDNnRkK) - Exploration with the Flutter Team.
- [Tensor Programming](https://www.youtube.com/watch?v=WwhyaqNtNQY&list=PLJbE2Yu2zumDqr_-hqpAN0nIr6m14TAsd) - Very rich content by [Tensor Programming](http://tensor-programming.com/)
- [Mtechviral](https://www.youtube.com/watch?v=qWL1lGchpRA&list=PLR2qQy0Zxs_UdqAcaipPR3CG1Ly57UlhV) - [Hindi/English] Mtechviral Series By [Pawan Kumar](https://github.com/iampawan)
- [Flutter in Practice](https://www.youtube.com/playlist?list=PLhXZp00uXBk5TSY6YOdmpzp1yG3QbFvrN) - Free video courssd for beginners & non-programmers by [Zaiste](https://zaiste.net/)
- [Whatsupcoders](https://www.youtube.com/c/whatsupcoders) - Free video series on Flutter Widgets by [Kamal](https://github.com/whatsupcoders)
- [Reso Coder](https://www.youtube.com/channel/UCSIvrn68cUk8CS8MbtBmBkA) - Intermediate and advanced videos by [Matej Rešetár](https://github.com/ResoCoder)
## Components
### Demonstrations
- [Official Gallery](https://github.com/flutter/gallery) - Demo for the material design widgets provided by Flutter Team
- [Flutter Examples](https://github.com/nisrulz/flutter-examples) [6923⭐] - Simple basic isolated apps for devs by [Nishant Srivastava](https://github.com/nisrulz)
- [Flutter Catalog](https://github.com/X-Wei/flutter_catalog) [2167⭐] - showcasing Flutter components, with side-by-side source code view, by [X-Wei](https://github.com/X-Wei)
### UI
- [Facebook Reactions](https://github.com/duytq94/facebook-reaction-animation) [425⭐] - Facebook reactions widget by [Duy Tran](https://github.com/duytq94)
- [Flushbar](https://github.com/AndreHaueisen/flushbar) [1004⭐] - Highly configurable Snackbar by [Andre Haueisen](https://github.com/AndreHaueisen)
- [Stepper Touch](https://github.com/Rahiche/stepper_touch) [303⭐] - Lateral value stepper nicely animated by [Raouf Rahiche](https://github.com/Rahiche).
- [Liquid Pull To Refresh](https://github.com/aagarwal1012/Liquid-Pull-To-Refresh) [1249⭐] - A beautiful and custom refresh indicator by [Ayush Agarwal](https://github.com/aagarwal1012/).
- [Direct Select](https://github.com/LanarsInc/direct-select-flutter) [774⭐] - Selection widget with an ethereal, full-screen modal popup by [Ivan Yatsouba](https://github.com/iyatsouba).
- [Before After](https://github.com/xsahil03x/before_after) [913⭐] - Beautiful slider which makes it easier to display the difference between two images, by [Sahil Kumar](https://github.com/xsahil03x).
- [Scratcher](https://github.com/vintage/scratcher) [573⭐] - Scratch card widget which temporarily hides content from user, by [Kamil Rykowski](https://github.com/vintage).
- [Beautiful_Popup](https://github.com/jaweii/Flutter_beautiful_popup) [677⭐] - Beautify your app popup by [jaweii](https://github.com/jaweii).
- [Animated Selection Slide](https://github.com/sbilketay/animated_selection_slide) An animated selection widget by swiping by [Sezgin Bilgetay](https://github.com/sbilketay).
- [Flutter Neumorphic](https://github.com/Idean/Flutter-Neumorphic) [2007⭐] - Ready to use Neumorphic kit for Flutter with 🕶️ dark mode.
- [Dough](https://github.com/HatFeather/flutter_dough) [704⭐] - Widgets for a squishy user interface by [Josiah Saunders](https://github.com/HatFeather).
- [Card Settings](https://github.com/codegrue/card_settings) [545⭐] - package for building settings forms by [codegrue](https://github.com/codegrue).
- [Timelines](https://github.com/chulwoo-park/timelines) [712⭐] - Powerful & Easy to use timeline package by [Chulwoo Park](https://github.com/chulwoo-park).
- [Timeline Tile](https://github.com/JHBitencourt/timeline_tile) [735⭐] - Tile to help build beautiful and customisable timelines by [Julio Bitencourt](https://github.com/JHBitencourt).
- [Rounded Loading Button](https://github.com/chrisedg87/flutter_rounded_loading_button) [325⭐] - Button with a loading indicator, complete with success and error animations by [Chris Edgington](https://twitter.com/ChrisTheEdg)
- [Flyer Chat](https://github.com/flyerhq/flutter_chat_ui) [1594⭐] - Community-driven chat UI implementation by the [Flyer Chat team](https://github.com/flyerhq)
- [Smooth Page Indicator](https://github.com/Milad-Akarie/smooth_page_indicator) [1199⭐] - Customizable animated page indicator with a set of built-in effects. [Milad Akarie](https://github.com/Milad-Akarie)
#### Libraries
- [Forui](https://github.com/forus-labs/forui) [359⭐] - Minimalistic UI library heavily inspired by shadcn/ui by [Forus Labs](https://github.com/forus-labs).
- [Shadcn](https://github.com/nank1ro/flutter-shadcn-ui) [894⭐] - Shadcn-ui port. Fully customizable UI components.
#### List
- [Super List](https://github.com/superlistapp/super_sliver_list) [283⭐] - Drop-in replacement for SliverList and ListView that can handle large amount of items with variable extents by [Matej Knopp](https://github.com/knopp)
- [Reorderables](https://github.com/hanshengchiu/reorderables) [726⭐] - Drag&Drop Table, Row, Column, Wrap(Grid) and SliverList elements by [Hansheng Chiu](https://github.com/hanshengchiu).
- [Liquid Pull To Refresh](https://github.com/aagarwal1012/Liquid-Pull-To-Refresh) [1249⭐] - A beautiful and custom refresh indicator by [Ayush Agarwal](https://github.com/aagarwal1012/).
- [PlutoGrid](https://github.com/bosskmk/pluto_grid) [661⭐] - Web and desktop datagrid that can be controlled by the keyboard by [bosskmk](https://github.com/bosskmk).
- [Typeahead](https://github.com/AbdulRahmanAlHamali/flutter_typeahead) [817⭐] - Display overlay suggestions to users as they type by [Abdul Rahman Al Hamali](https://github.com/AbdulRahmanAlHamali)
- [StaggeredGridView](https://github.com/letsar/flutter_staggered_grid_view) [3122⭐] - GridView with tiles of variable sizes by [Romain Rastel](https://github.com/letsar)
- [Sticky Headers](https://github.com/slightfoot/flutter_sticky_headers) [1080⭐] - Configurable sticky headers by [Simon Lightfoot](http://www.devangels.london/)
#### Drawers
- [Hidden Drawer Menu](https://github.com/RafaelBarbosatec/hidden_drawer_menu) [351⭐] - Beautiful drawer mode menu feature with perspective animations by [Rafael Almeida Barbosa](https://github.com/RafaelBarbosatec).
- [Flutter Inner Drawer](https://github.com/Dn-a/flutter_inner_drawer) [513⭐] - Easy way to create an internal drawer (left / right) where you can enter a list-menu or other by [Di Natale Antonino](https://github.com/Dn-a).
#### Bottom bars
- [Fancy Bottom Navigation](https://github.com/tunitowen/fancy_bottom_navigation) [758⭐] - Animated bottom navigation by [Tony Owen](https://github.com/tunitowen).
- [Circular Bottom Navigation](https://github.com/imaNNeoFighT/circular_bottom_navigation) [653⭐] - Beautiful animated bottom navigation bar by [Iman Khoshabi](https://github.com/imaNNeoFighT).
- [Bottom Navy Bar](https://github.com/pedromassango/bottom_navy_bar) [1022⭐] - Beautiful and colorful animated bottom navigation bar by [Pedro Massango](https://github.com/pedromassango).
- [Google Nav Bar](https://github.com/sooxt98/google_nav_bar) [737⭐] - A modern google style nav bar for flutter by [Sooxt98](http://github.com/sooxt98)
#### Bottom Sheets
- [Rubber Bottom Sheet](https://github.com/mcrovero/rubber) [562⭐] - Elastic material bottom sheet by [Mattia Crovero](https://github.com/mcrovero).
- [Modal Bottom Sheet](https://github.com/jamesblasco/modal_bottom_sheet) [1860⭐] - Modal bottom sheet with Material, Cupertino iOS13 or custom appareance by [Jaime Blasco](https://github.com/jamesblasco).
#### Sliders
- [RangeSlider](https://github.com/boeledi/RangeSlider) [374⭐] - 2-thumb configurable RangeSlider by [Didier Boelens](https://www.didierboelens.com)
- [Flutter Xlider](https://github.com/Ali-Azmoud/flutter_xlider) [518⭐] - A material design slider and range slider, horizontal and vertical, with RTL support by [Ali-Azmoud](https://github.com/Ali-Azmoud)
#### UI Helpers
- [Offline](https://github.com/jogboms/flutter_offline) [1054⭐] - Tidy utility to handle offline/online connectivity by [Jeremiah Ogbomo](https://twitter.com/jogboms).
- [ShowCaseView](https://github.com/simformsolutions/flutter_showcaseview) [1488⭐] - Way to showcase your app features on iOS and Android by [Simform](https://github.com/simformsolutions)
- [Mix](https://github.com/leoafarias/mix) [561⭐] - An expressive way to effortlessly build design systems by [Leo Farias](https://github.com/leoafarias).
- [Blurhash](https://github.com/fluttercommunity/flutter_blurhash) [520⭐] - Compact representation of a placeholder for an image. Encode a blurry image under 30 caracters by [Robert Felker](https://www.linkedin.com/in/robert-felker/)
#### Material Design
- [Slidable](https://github.com/letsar/flutter_slidable) [2690⭐] - Slidable list item with left and right slide actions by [Romain Rastel](https://github.com/letsar)
- [Backdrop](https://github.com/fluttercommunity/backdrop) [331⭐] - [Backdrop](https://material.io/design/components/backdrop.html) implementation for flutter.
#### Effect
- [Frosted Glass](http://stackoverflow.com/questions/43550853/how-do-i-do-the-frosted-glass-effect-in-flutter) - Render effect by [Collin Jackson](http://www.collinjackson.com)
- [Shimmer](https://github.com/hnvn/flutter_shimmer) [1784⭐] - Shimmer effect while content is loading by [HungHD](https://github.com/hnvn)
- [Wave](https://github.com/i-protoss/wave) [1106⭐] - Displaying some waves with custom color, duration, floating and blur effects by [RockerFlower](https://github.com/RockerFlower)
- [Liquid Swipe](https://github.com/iamSahdeep/liquid_swipe_flutter) - Liquid swipe to your stacked containers by [Sahdeep Singh](https://github.com/iamSahdeep)
- [PhotoFilters](https://github.com/skkallayath/photofilters) [403⭐] - Apply filters to an image by [Sharafudheen KK](https://github.com/skkallayath).
- [Shine](https://github.com/JonathanMonga/flutter_shine.dart) [146⭐] - Pretty shadows with dynamic light positions by [Jonathan Monga](https://github.com/JonathanMonga/).
- [Clay Containers](https://github.com/mcaubrey/clay_containers) [437⭐] - Neumorphic widget primitives to serve as the foundation of your own designs by [Michael Charles](https://github.com/mcaubrey).
#### Calendar
- [Calendar Carousel Widget](https://github.com/dooboolab/flutter_calendar_carousel) <!-- stargazers:dooboolab/flutter_calendar_carousel--> - Calendar carousel by [dooboolab](https://github.com/dooboolab/flutter_calendar_carousel)
- [Table Calendar](https://github.com/aleksanderwozniak/table_calendar) [1813⭐] - Calendar organized neatly into a Table, with vertical autosizing by [Aleksander Woźniak](https://github.com/aleksanderwozniak)
- [Time Planner](https://github.com/Jamalianpour/time_planner) [223⭐] - A beautiful, easy to use and customizable time planner for flutter mobile, desktop and web by [Mohammad Jamalianpour](https://github.com/Jamalianpour)
#### Backend-Driven
- [Dynamic Widget](https://github.com/dengyin2000/dynamic_widget) [1554⭐] - Build your dynamic UI with json, and the json format is very similar with flutter widget code by [Denny Deng](https://github.com/dengyin2000).
### Image
- [Carousel Slider](https://github.com/serenader2014/flutter_carousel_slider) [1591⭐] - Carousel slider widget, support infinite scroll and custom child widget by [serenader](https://github.com/serenader2014)
- [Photo View](https://github.com/renancaraujo/photo_view) [1901⭐] - Scalable image view with loading placeholder by [Renan C. Araújo](https://github.com/renancaraujo)
- [SVG](https://github.com/dnfield/flutter_svg) [1661⭐] - SVG parsing, rendering, and widget library by [Dan Field](https://github.com/dnfield)
- [Image Cropper](https://github.com/hnvn/flutter_image_cropper) [993⭐] - Crop your images support ratio, rotation, zoom by [HungHD](https://github.com/hnvn)
- [Cached Network Image](https://github.com/renefloor/flutter_cached_network_image) [2431⭐] - Show images from the internet and keep them in the cache directory by
- [Lottie](https://github.com/xvrh/lottie-flutter) [1157⭐] - Use airbnb's popular [After Effects Animation library](https://airbnb.design/lottie/) by [xvrh](https://github.com/xvrh/lottie-flutter)
- [Bitmap](https://github.com/renancaraujo/bitmap) [175⭐] - Perform Bitmap manipulations (such as contrast and exposure) with a help from the Dart FFI by [Renan C. Araújo](https://github.com/renancaraujo)
- [Crop](https://github.com/xclud/flutter_crop) [258⭐] - Crop any widget/image in Android, iOS, Web and Desktop by [Mahdi K. Fard](https://github.com/xclud/)
#### Image Picker
- [Image Picker](https://github.com/flutter/packages/tree/main/packages/image_picker) - Images Selection by [Collin Jackson](http://www.collinjackson.com)
- [WeChat Assets Picker](https://github.com/fluttercandies/flutter_wechat_assets_picker) [1496⭐] - Assets picker in WeChat style, support multi assets by [Alex Li](https://github.com/AlexV525).
- [Advance Image Picker](https://pub.dev/packages/advance_image_picker) - Select and edit images from Android/iOS library and capture camera shots from within the same view by [WetaVN](https://github.com/weta-vn)
### Map
- [GeoCoder](https://github.com/aloisdeniel/flutter_geocoder) [185⭐] - Forward and reverse geocoding by [Aloïs Deniel](https://aloisdeniel.github.com)
- [AMap](https://github.com/fluttify-project/amap_map_fluttify) [538⭐] - Access to AMap services(高德地图) by [fluttify-project](https://github.com/fluttify-project)
- [Map](https://github.com/xclud/flutter_map) [129⭐] - Fully-fledged interactive Map widget for flutter written in pure Dart. Supports all platforms. by [Mahdi K. Fard](https://github.com/xclud/)
### Charts
- [Circular Chart](https://github.com/xqwzts/flutter_circular_chart) [398⭐] - Animated radial and pie charts by [Victor Choueiri](https://github.com/xqwzts)
- [FL Chart](https://github.com/imaNNeoFighT/fl_chart) [6741⭐] - Draw fantastic charts in Flutter by [Iman Khoshabi](http://www.ikhoshabi.com)
- [Bezier Chart](https://github.com/aeyrium/bezier-chart) [446⭐] - Beautiful bezier line chart widget for flutter that is highly interactive and configurable by [Diego Velasquez](https://twitter.com/diegoveloper)
- [Echarts](https://github.com/entronad/flutter_echarts) [739⭐] - Large collection of advanced reactives charts by [LIN Chen](https://github.com/entronad)
- [Graphic](https://github.com/entronad/graphic) [1587⭐] - Data visualization library based on the Grammar of Graphics by [LIN Chen](https://github.com/entronad)
### Navigation
- [Fluro](https://github.com/goposse/fluro) [3672⭐] - The brightest, hippest, coolest router for Flutter with Navigation, wildcard, query, transitions by [Posse](http://goposse.com)
- [Get](https://github.com/jonataslaw/get) [10245⭐] - Navigate between screens & display snackbars/dialogs/bottomSheets without context by [Jonny Borges](https://github.com/jonataslaw)
- [Beamer](https://github.com/slovnicki/beamer) [588⭐] - Route through guarded page stacks and URLs using the Navigator 2.0 API effortlessly by [Sandro Lovnički](https://github.com/slovnicki)
- [auto_route](https://github.com/Milad-Akarie/auto_route_library) [1570⭐] - AutoRoute is a declarative routing solution, where everything needed for navigation is automatically generated for you. [Milad_Akarie](https://github.com/Milad-Akarie).
### Auth
- [Local Auth](https://github.com/flutter/packages/tree/main/packages/local_auth) - Touch ID, lock code, fingerprint auth on iOS and Android
- [Google Sign-In](https://github.com/flutter/packages/tree/main/packages/google_sign_in) - Google OAuth
- [Firebase Auth](https://github.com/FirebaseExtended/flutterfire/tree/master/packages/firebase_auth) - Firebase OAuth
- [Firebase Phone Auth](https://medium.com/@gildaswise/flutter-adding-sign-in-with-google-and-phone-authentication-to-your-app-69f681518f9b) - Phone number auth via SMS by [Gildásio Filho](https://github.com/gildaswise)
- [SimpleAuth](https://github.com/Clancey/simple_auth) [352⭐] - Azure Active Directory, Amazon, Dropbox, Facebook, Github, Google, Instagram, Linked In, Microsoft Live Connect, Github, OAuth, Basic Auth by [James Clancey](https://github.com/Clancey)
- [Flutter AppAuth](https://github.com/MaikuB/flutter_appauth) [271⭐] - Plugin that provides a wrapper around the AppAuth iOS and Android SDKs by [Michael Bui](https://github.com/MaikuB)
### Text & Rich Content
- [Masked Text](https://github.com/benhurott/flutter-masked-text) [276⭐] - Masked text with custom and monetary formatting by [Ben-hur Santos Ott](https://github.com/benhurott)
- [Fleather](https://github.com/fleather-editor/fleather) <!--stargazersfleather-editor/fleather--> - Soft & gentle rich text editor
- [AutoSizeText](https://github.com/leisim/auto_size_text) [2025⭐] - Automatically resizes text to fit perfectly within its bounds by [Simon Leier](https://github.com/leisim).
- [Parsed Text](https://github.com/fayeed/flutter_parsed_text) [219⭐] - Interactive text based on content recognition, also supports Regex by [Fayeed Pawaskar](https://github.com/fayeed/)
- [TeX](https://github.com/shah-xad/flutter_tex) [276⭐] - Render Mathematics Equations with full HTML and JavaScript support by [Shahzad Akram](https://github.com/shah-xad)
- [Code Field](https://github.com/BertrandBev/code_field) - Customizable code field widget supporting syntax highlighting by [Bertrand Bevillard](https://github.com/BertrandBev)
### Forms
- [Form Builder](https://github.com/danvick/flutter_form_builder) [1480⭐] - Framework that simplifies building forms, validating fields, reacting to changes, and collecting the final user input by [Danvick Miller](https://github.com/danvick)
- [Reactive Forms](https://github.com/joanpablo/reactive_forms) [467⭐] - Model-driven approach to handling Forms inputs and validations, heavily inspired in Angular's Reactive Forms.
### Analytics
- [Usage](https://github.com/dart-lang/usage) [146⭐] - Google Analytics wrapper for command-line, web, and Flutter apps
- [Firebase Analytics](https://github.com/FirebaseExtended/flutterfire/tree/master/packages/firebase_analytics) - Connect to Firebase Analytics API
### Internationalization
- [GenLang](https://github.com/KingWu/gen_lang) [100⭐] - Code generator for Internationalization by [King Wu](https://github.com/KingWu)
- [Flutter Translate](https://github.com/bratan/flutter_translate) [401⭐] - Internationalization (i18n) library by [Florin Bratan](http://bratan.me)
- [attranslate](https://github.com/fkirc/attranslate) - Semi-automated translation of ARB or JSON files by [fkirc](https://github.com/fkirc)
### Styling
### Media
- [photo_manager](https://github.com/fluttercandies/flutter_photo_manager) [671⭐] - Provides assets (image/video/audio) abstraction management APIs that can be easily integrated with custom UI widgets by [CaiJingLong](https://github.com/CaiJingLong) and [Alex Li](https://github.com/AlexV525).
#### Audio
- [Audio Players Plugin](https://github.com/luanpotter/audioplayers) [1976⭐] - Play multiple audio files simultaneously (Android/iOS) by [Luan Nico](https://github.com/luanpotter).
- [Flutter Audio Recorder](https://github.com/shadow-app/flutter_audio_recorder) - Provides full controls and access to recording details such as level metering by [Wenyan Li](https://github.com/nikli2009).
- [Flutter Sound](https://github.com/dooboolab/flutter_sound) [868⭐] - Flutter audio recorder and player at one hand by [dooboolab](https://github.com/dooboolab)
- [AssetsAudioPlayer](https://github.com/florent37/Flutter-AssetsAudioPlayer) [752⭐] Simultaneous playback of audio from assets/network/file and displaying notifications [android / ios / web / macos]
- [Audio Service](https://pub.dev/packages/audio_service) - System background audio support by [Ryan Heise](https://github.com/ryanheise). [Tutorial](https://suragch.medium.com/background-audio-in-flutter-with-audio-service-and-just-audio-3cce17b4a7d?sk=0837a1b1773e27a4f879ff3072e90305) by [Suragch](https://twitter.com/Suragch1).
#### Video
- [WebRTC](https://github.com/cloudwebrtc/flutter-webrtc) [4086⭐] - WebRTC plugin for iOS/Android by [CloudWebRtc](https://github.com/cloudwebrtc)
- [Chewie](https://github.com/brianegan/chewie) [1926⭐] - Provides low-level access to video playback by [Brian Egan](https://github.com/brianegan)
- [Video Trimmer](https://github.com/sbis04/video_trimmer) [432⭐] - Visualise and trim videos by [Souvik Biswas](https://github.com/sbis04)
- [CamerAwesome](https://github.com/Apparence-io/camera_awesome) [952⭐] - Community camera plugin rework by [Apparence.io studio](https://apparence.io)
- [Video Editor](https://github.com/LeGoffMael/video_editor) [386⭐] - Edit (crop, trim, rotate) a video and a its cover by [Maël Le Goff](https://github.com/LeGoffMael)
#### Voice
- [Speech Recognition](https://github.com/rxlabz/speech_recognition) [337⭐] - Speech to text by [Erick Ghaumez](https://twitter.com/rxlabz)
- [OK Google](https://marcinszalek.pl/flutter/ok-google-flutter/) - Integrate google assistant by [Marcin Szalek](https://marcinszalek.pl/)
### Storage
- [Firebase Storage](https://github.com/FirebaseExtended/flutterfire/tree/master/packages/firebase_storage) - Firebase as data storage
- [Secure Storage](https://github.com/mogol/flutter_secure_storage) [1118⭐] - Keychain and Keystore storage by [German Saprykin](https://github.com/mogol)
#### Preferences
### Monetization
- [Admob](https://pub.dev/packages/admob) - GoogleAdmob supports interstitial ads in both iOS and Android by Brett Nesbitt
- [Firebase AdMob](https://github.com/FirebaseExtended/flutterfire/tree/master/packages/firebase_admob) - Ad integration using Firebase
- [Inapp Purchase](https://github.com/dooboolab/flutter_inapp_purchase) [550⭐] - Features set of 'in app purchase' derived from [react-native-iap](https://github.com/dooboolab/react-native-iap) by [dooboolab](https://github.com/dooboolab)
- [Admob Flutter](https://github.com/kmcgill88/admob_flutter) - Admob plugin that shows banner ads using native platform views by [Youssef Kababe](https://github.com/YoussefKababe) & [Kevin McGill](https://github.com/kmcgill88).
- [Facebook Audience Network](https://github.com/dreamsoftin/facebook_audience_network) - Facebook Audience Network Ad plugin that shows banner, interstitial, in-stream video, rewarded video & natvie ads by [Dreamsoft Innovations](https://github.com/dreamsoftin).
- [Square In-App Payments SDK](https://github.com/square/in-app-payments-flutter-plugin) [339⭐] - Take payments by embedding a card entry form in your app that produces nonces from customer-provided card information or digital wallets by [Square](https://github.com/orgs/square)
## Templates
- [Mates](https://github.com/CodemateLtd/FlutterMates) [592⭐] - How to load profiles from the randomuser.me API and a nice profile details page by [Iiro Krankka](https://github.com/roughike)
- [The Gorgeous Login](https://github.com/huextrat/TheGorgeousLogin) [1736⭐] - Design and smooth login template by [Hugo Extrat](https://github.com/huextrat)
- [Liquid Pay Payment App](https://github.com/longhoang2984/flutter_payment_app_ui) [304⭐] - Liquid Pay App Concept by [Long Hoang](https://github.com/longhoang2984)
- [FlutterFoodybite](https://github.com/JideGuru/FlutterFoodybite) [1567⭐] - Beautiful food app UI template by [JideGuru](https://github.com/JideGuru)
- [Flutter Samples](https://github.com/diegoveloper/flutter-samples) [3083⭐] - Collection of nice flutter samples by [Diego Velásquez](https://github.com/diegoveloper).
- [ActingWeb First_App](https://github.com/gregertw/actingweb_firstapp) [476⭐] - Starter app with basic elements for a team-developed production-quality app by [Greger Wedel](https://github.com/gregertw)
- [Smart Washing Machine](https://github.com/pawlik92/flutter_whirlpool) [880⭐] - Smart washing machine UI challenge app with Box2D physic engine by [Tomasz Pawlikowski](https://github.com/pawlik92)
### Clone
- [GitTouch](https://github.com/pd4d10/git-touch) [1565⭐] - Open source mobile client for GitHub, GitLab, Bitbucket and Gitea by [Rongjian Zhang](https://github.com/pd4d10)
- [RustDesk](https://github.com/rustdesk/rustdesk) [72980⭐] - Open source virtual / remote desktop. TeamViewer alternative. Built with Rust by [RustDesk team](https://www.rustdesk.com/)
### Machine Learning
- [m2cgen](https://github.com/BayesWitnesses/m2cgen) [2792⭐] - CLI tool to convert ML models into native Dart code by [BayesWitnesses](https://github.com/BayesWitnesses)
### Vision
#### Augmented Reality
- [ARKit Plugin](https://github.com/olexale/arkit_flutter_plugin) [798⭐] - Wrapper for ARKit - Apple's augmented reality platform for iOS by [Olexandr Leuschenko](https://github.com/olexale).
- [ARCore Plugin](https://github.com/giandifra/arcore_flutter_plugin) [433⭐] - Augmented reality with ARCore platform by [Gian Marco Di Francesco](https://github.com/giandifra).
## Plugins
- [Pub packages](https://pub.dev/flutter/packages) - Packages filter in Dart Pub Repository.
- [Plugins](https://github.com/flutter/packages/tree/main/packages) - Official Flutter Team Plugins
### Device
- [WebView](https://github.com/dart-flitter/flutter_webview_plugin) [1479⭐] - Render web content by [Hadrien Lejard](https://twitter.com/HadrienLejard)
- [Location](https://github.com/Lyokone/flutterlocation) [1104⭐] - Handle location, handling callbacks to get continuous location by [Lyokone](https://github.com/Lyokone)
- [Proximity Sensor Plugin](https://pub.dev/packages/proximity_plugin) - A plugin to access the proximity sensor of your device by [Manoj NB](https://github.com/Samaritan1011001)
- [Local Notifications](https://github.com/MaikuB/flutter_local_notifications) [2441⭐] - Plugin for displaying local notifications by [Michael Bui](https://github.com/MaikuB)
- [Device Calendar](https://github.com/builttoroam/device_calendar) - Plugin for modifying calendars on the user's device by [Built to Roam](http://builttoroam.com)
- [Badger](https://github.com/g123k/flutter_app_badger) [308⭐] - Update app badge on the launcher by [Edouard Marquez](https://twitter.com/g123k)
- [UDID](https://github.com/GigaDroid/flutter_udid) [245⭐] - Persistent UDID across app reinstalls by [Leon Kukuk](https://kukuk.me)
- [Downloader](https://github.com/hnvn/flutter_downloader) [906⭐] - Create and manage download tasks by [HungHD](https://github.com/hnvn)
- [InAppWebView](https://github.com/pichillilorenzo/flutter_inappwebview) [3178⭐] - Add inline WebView widgets or open an in-app browser window by [Lorenzo Pichilli](https://github.com/pichillilorenzo)
- [AppAvailability](https://github.com/pichillilorenzo/flutter_appavailability) [92⭐] - List, launch and check installed apps by [Lorenzo Pichilli](https://github.com/pichillilorenzo)
- [File Picker](https://github.com/miguelpruivo/plugins_flutter_file_picker) [1320⭐] - Native file explorer to load absolute file path by [Miguel Ruivo](https://github.com/miguelpruivo)
- [VPN](https://github.com/X-dea/Flutter_VPN) [350⭐] - Access VPN services by [Jason C.H](https://github.com/ctrysbita)
- [Geolocator](https://github.com/baseflow/flutter-geolocator) [1240⭐] - A Flutter geolocation plugin which provides easy access to the platform specific location services by [Baseflow](https://baseflow.com)
- [Permission Handler](https://github.com/baseflow/flutter-permission-handler) [2023⭐] - A Flutter permission plugin which provides a cross-platform (iOS, Android) API to request and check permissions by [Baseflow](https://baseflow.com)
- [Live Activities](https://github.com/istornz/live_activities) [164⭐] - A plugin to use iOS live activities & Dynamic Island features by [Dimitri Dessus](https://github.com/istornz)
#### Scanner
#### Bluetooth / NFC / Beacon
- [Blue](https://github.com/pauldemarco/flutter_blue) [2378⭐] - Bluetooth by [Paul DeMarco](https://github.com/pauldemarco)
- [NFC Reader](https://github.com/matteocrippa/flutter-nfc-reader) [394⭐] - NFC reader plugin for iOS and Android by [Matteo Crippa](https://github.com/matteocrippa)
- [Reactive Ble](https://github.com/PhilipsHue/flutter_reactive_ble) [664⭐] - Handles BLE operations for multiple devices by [Philips Hue](https://github.com/PhilipsHue)
- [NFC Manager](https://github.com/okadan/flutter-nfc-manager) [200⭐] - Generic NFC plugin for iOS and Android by [Naoki Okada](https://github.com/okadan)
### Storage
- [Sqflite](https://github.com/tekartik/sqflite) [2856⭐] - SQLite flutter plugin by [Alexandre Roux](https://www.linkedin.com/in/alextekartik/)
- [Drift](https://github.com/simolus3/drift) - Drift is an easy to use, reactive, typesafe persistence library for Dart & Flutter by [
Simon Binder](https://github.com/simolus3)
- [ObjectBox](https://github.com/objectbox/objectbox-dart) - On-device database for fast cross-platform Dart object persistence by [ObjectBox](https://github.com/objectbox)
### Services
- [OneSignal](https://github.com/OneSignal/OneSignal-Flutter-SDK) [615⭐] - Push notification service by [OneSignal](https://github.com/OneSignal)
- [In App Review](https://github.com/britannio/in_app_review) [311⭐] - Requesting and Writing Reviews for Android, iOS and MacOS by [Britannio Jarrett](https://github.com/britannio)
## Frameworks
### State management
#### Standard
- [Bloc](https://github.com/felangel/bloc) [11726⭐] - Collection of packages that help implement the BLoC design pattern by [Felix Angelov](https://github.com/felangel)
- [Provider](https://github.com/rrousselGit/provider) [5101⭐] - State-management library for Flutter by [Remi Rousselet](https://github.com/rrousselGit)
- [RiverPod](https://github.com/rrousselGit/river_pod) [6172⭐] - Provider, but different by [Remi Rousselet](https://github.com/rrousselGit)
- [Get It](https://github.com/fluttercommunity/get_it) [1323⭐] - Simple direct Service Locator that allows to decouple the interface from a concrete implementation by [Thomas Burkhartb](https://twitter.com/Thomasburkhartb)
- [GetX](https://github.com/jonataslaw/getx) [10245⭐] - Contextless, State-management & navigation by [Jonny Borges](https://github.com/jonataslaw)
- [MobX](https://github.com/mobxjs/mobx.dart) [2390⭐] - Supercharge the state-management in your apps with Transparent Functional Reactive Programming (TFRP). Port of MobX from the Js/React land.
- [Signals](https://github.com/rodydavis/signals.dart) [433⭐] - Reactive programming made simple. Port of Signals pattern by [Rody Davis](https://github.com/rodydavis)
#### Redux / ELM / Dependency Injection
- [Redux.dart](https://github.com/johnpryan/redux.dart) [516⭐] - Port of Redux to Dart with an ecosystem of middleware, Flutter integrations, and time traveling dev tools by [John Ryan](https://github.com/johnpryan) and [Brian Egan](https://gitlab.com/users/brianegan/projects)
- [Redux](https://github.com/brianegan/flutter_redux) [1653⭐] - Built to work with [redux.dart](https://github.com/johnpryan/redux.dart), utilities that allow you to easily consume a Redux Store to build Widgets
- [Async Redux](https://pub.dev/packages/async_redux) [229⭐] - Redux without boilerplate. Allows for both sync and async reducers by [Marcelo Glasberg](https://github.com/marcglasberg/)
### Widgets
- [Hooks](https://github.com/rrousselGit/flutter_hooks) [3119⭐] - Advanced code sharing between widgets by [Remi Rousselet](https://github.com/rrousselGit)
- [Functional widget](https://github.com/rrousselGit/functional_widget) [595⭐] - Code generator writing widgets as functions with annotations by [Remi Rousselet](https://github.com/rrousselGit)
### Data
- [Graphql](https://github.com/zino-app/graphql-flutter) [3243⭐] - Implementation of the GraphQL spec by [Zino App B.V.](https://github.com/zino-app)
- [GeoFlutterFire](https://github.com/DarshanGowda0/GeoFlutterFire) [305⭐] - Implementation of GeoFirestore for flutter by [Darshan Gowda](https://darshann.me/)
- [Ferry](https://github.com/gql-dart/ferry) [600⭐] - Powerful & Extensible GraphQL Client by [Sat Mandir Khalsa](https://github.com/smkhalsa)
### Backend
- [Dynamic Widget](https://github.com/dengyin2000/dynamic_widget) [1554⭐] - Build your dynamic UI with json, and the json format is very similar with flutter widget code by [Denny Deng](https://github.com/dengyin2000).
- [NETCoreSync](https://github.com/aldycool/NETCoreSync) - Centralized database synchronization framework for multiple clients, built on top of [Moor](https://github.com/simolus3/moor) library by [Aldy J](https://github.com/aldycool)
- [Parse for Flutter](https://github.com/parse-community/Parse-SDK-Flutter/tree/master/packages/flutter) [575⭐] Open source backend framework by [ParsePlatform](https://parseplatform.org/).
- [Serverpod](https://github.com/serverpod/serverpod) - Write your server-side code and API in Dart.
### Animation
- [SpinKit](https://github.com/jogboms/flutter_spinkit) [2990⭐] - Animated loading indicators by [Jeremiah Ogbomo](https://twitter.com/jogboms)
- [AnimatedTextKit](https://github.com/aagarwal1012/Animated-Text-Kit) [1652⭐] - A collection of cool text animations by [Ayush Agarwal](https://github.com/aagarwal1012/)
- [Drawing Animation](https://github.com/biocarl/drawing_animation) [484⭐] - Create drawing line animations based on SVG path data by [Carl Hauck](https://twitter.com/cahaucks)
- [Simple Animations](https://github.com/felixblaschke/simple_animations) - Create awesome custom animations easily by [Felix Blaschke](https://github.com/felixblaschke)
- [Staggered Animations](https://github.com/mobiten/flutter_staggered_animations) [1566⭐] - Easily add staggered animations to your ListView, GridView, Column and Row by [mobiten](https://mobiten.com/)
- [Animate Do](https://pub.dev/packages/animate_do) - Animation package inspired in Animate.css by [Fernando Herrera](https://twitter.com/Fernando_Her85).
- [Funvas](https://github.com/creativecreatorormaybenot/funvas) [524⭐] - Create fun *time based canvas animations* by [creativecreatorormaybenot](https://twitter.com/creativemaybeno).
- [Flutter Animate](https://pub.dev/packages/flutter_animate) [915⭐] - A performant library that makes it simple to add almost any kind of animated effect by [gskinner](https://gskinner.com/)
### Testing
- [flutter_convenient_test](https://github.com/fzyzcjy/flutter_convenient_test) [479⭐] - Tests with action history, time travelling, screenshots, rapid re-execution, video recordings, interactive mode by [fzyzcjy](https://github.com/fzyzcjy)
- [Patrol](https://github.com/leancodepl/patrol) [860⭐] - Easy-to-learn, powerful UI testing framework eliminating limitations of `flutter_test`, `integration_test`, and `flutter_driver` by [LeanCode](https://leancode.co)
### Web
- [Responsive Framework](https://github.com/Codelessly/ResponsiveFramework) [1262⭐] - Automatically adapt UI to different screen sizes. Responsiveness made simple by [Codelessly](https://codelessly.com)
## Experimental
This section contains libraries that take an experimental or unorthodox approach.
- [styled_widget](https://github.com/ReinBentdal/styled_widget) [1260⭐] - Simplifying your widget tree structure by defining widgets using methods by [Rein Gundersen Bentdal](https://github.com/ReinBentdal).
## Engines
### Rendering
- [Graphx](https://github.com/roipeker/graphx) [491⭐] - Making drawings and animations extremely simple, inspired by Flash, by [Roi Peker](https://github.com/roipeker).
### Game
- [Flame](https://github.com/flame-engine/flame) [9154⭐] - Minimalist game engine by [Luan Nico](https://github.com/luanpotter)
- [Bonfire](https://github.com/RafaelBarbosatec/bonfire) [1217⭐] - Flame engine based game engine for 2D RPG games
- [Zerker](https://github.com/flutterkit/zerker) [681⭐] - Lightweight and powerful graphic animation library by [drawcall](https://github.com/drawcall).
#### Open source games
- [Flip](https://github.com/RedBrogdon/flutterflip) [265⭐] - Reversi game by [Andrew Brogdon](https://github.com/RedBrogdon)
- [Crush](https://github.com/boeledi/flutter_crush) [575⭐] - How to build a Math-3 game, like Candy Crush, Bejeweled by [Didier Boelens](https://didierboelens.com)
- [Tetris](https://github.com/boyan01/flutter-tetris) [1601⭐] - Tetris game by [YangBin](https://github.com/boyan01)
#### Game Engine resources
- [Awesome Flame](https://github.com/flame-engine/awesome-flame) [1047⭐] - Curated list of the best Flame games, projects, libraries, tools, tutorials, articles and more by [Flame Engine](https://github.com/flame-engine)
## Open Source Apps
### Premium
- [AppFlowy](https://github.com/AppFlowy-IO/appflowy) [55783⭐] - Open Source Notion Alternative. You are in charge of your data and customizations. Built with Flutter and Rust by [AppFlowy team](https://www.appflowy.io/)
- [RustDesk](https://github.com/rustdesk/rustdesk) [72980⭐] - Open source virtual/remote desktop and TeamViewer alternative. Built with Flutter and Rust by [RustDesk team](https://www.rustdesk.com/).
- [Spotube](https://github.com/KRTirtho/spotube) - Open source Spotify client for desktop and mobile by [Kingkor Roy Tirtho](https://github.com/KRTirtho)
### Top
- [Flutter Team Samples](https://github.com/flutter/samples) [17079⭐] - Collection of examples (including maps, json, Material and Cupertino) by the [Flutter team](https://github.com/orgs/flutter/people)
- [Flutter Common Widgets](https://github.com/alibaba/flutter-common-widgets-app) [23626⭐] - Collection of official widgets demos & docs in chinese to help developers learn quickly by [Alibaba Auction Frontend Team](https://github.com/alibaba-paimai-frontend)
- [Music Player](https://github.com/iampawan/Flutter-Music-Player) [1708⭐] - Full featured music player by [Pawan Kumar](https://about.me/imthepk)
- [WhatTodo](https://github.com/burhanrashid52/WhatTodo) [1175⭐] - Todoist like UI by [Burhanuddin Rashid](https://about.me/burhanrashid52)
- [FlutterGram](https://github.com/mdanics/fluttergram) [2314⭐] - Complete Instagram based on Firestore & Google Functions by [MDanics](https://github.com/mdanics)
- [Trace](https://github.com/trentpiercy/trace) [1108⭐] - Modern and powerful crypto portfolio & market explorer by [Trent Piercy](https://github.com/trentpiercy)
- [Taskist](https://github.com/huextrat/Taskist) [998⭐] - Taskist is a ToDo List app for Task Management by [Hugo EXTRAT](https://github.com/huextrat)
- [Linwood Butterfly](https://github.com/LinwoodCloud/Butterfly) [972⭐] - Powerful note taking app and an alternative to OneNote by [CodeDoctorDE](https://github.com/CodeDoctorDE)
- [Trinity Orientation @ Univ Toronto](https://github.com/matthewtory/trinity-orientation-2018) [617⭐] - Orientation week at Trinity College, U of T by [Matthew Tory](https://github.com/matthewtory)
- [Transform Widget](https://github.com/DrPaulT/flutter-engine-test) - Image widgets as 3D game engine sprites by [Paul Thomas](https://github.com/DrPaulT)
- [TailorMade](https://github.com/jogboms/tailor_made) [327⭐] - Managing a Fashion designer's daily routine using a mixture of ReBLoC w/ Firebase Cloud Store & Functions by [Jeremiah Ogbomo](https://twitter.com/jogboms)
- [Spacex-Go](https://github.com/jesusrp98/spacex-go) [869⭐] - Simple yet powerful, open-source SpaceX launch tracker. [jesusrp98](https://twitter.com/jesusrp98).
- [Enigma](https://github.com/AmitJoki/Enigma) - Privacy chat with end-to-end encryption by [AmitJoki](https://github.com/AmitJoki)
- [Chillify](https://github.com/KarimElghamry/chillify) - Fancy music app made with Provider and Bloc pattern by [Karim Elghamry](https://github.com/KarimElghamry)
- [Pokedex](https://github.com/scitbiz/flutter_pokedex) - Pokedex app with beautiful UI and smooth animation by [Hung Pham](https://github.com/scitbiz)
- [Timy Messenger](https://github.com/janoodleFTW/timy-messenger) [2081⭐] - Group messaging app with a focus on organizing events by [Miguel Beltran](https://github.com/miquelbeltran) and [Franz Heinfling](https://github.com/fheinfling)
- [GitJournal](https://github.com/GitJournal/GitJournal) [3454⭐] - Journaling your data in a Git Repo by [Vishesh Handa](https://github.com/vHanda)
- [AuthPass](https://github.com/authpass/authpass) [2251⭐] - Keepass compatible password manager for mobile and desktop by [hpoul](https://github.com/hpoul)
- [Fwitter](https://github.com/TheAlphamerc/flutter_twitter_clone) [3858⭐] - Full Twitter clone using Firebase solution by [Sonu Sharma](https://github.com/TheAlphamerc)
- [Harpy](https://github.com/robertodoering/harpy) [2064⭐] - Feature rich Twitter client by [Roberto Doering](https://github.com/robertodoering)
- [Mooltik](https://github.com/ruskakimov/mooltik) [203⭐] - Animation app for making cartoons by [Rustem Kakimov](https://github.com/ruskakimov)
- [Spotube](https://github.com/KRTirtho/spotube) [28916⭐] - A lightweight free Spotify crossplatform-client with no Spotify premium account requirement by [KRTirtho](https://github.com/KRTirtho)
- [Let's Draw](https://github.com/JideGuru/flutter_drawing_board) [278⭐] - A simple drawing app made by [JideGuru](https://github.com/JideGuru)
- [Openreads](https://github.com/mateusz-bak/openreads-android) [872⭐] - A simple privacy oriented mobile books tracker using Open Library API by [mateusz-bak](https://github.com/mateusz-bak)
## Utilities
- [Launcher Icons](https://github.com/franzsilva/flutter_launcher_icons) - Generate your launcher icons easily by [Mark O'Sullivan](https://github.com/MarkOSullivan94) and [Franz Silva](https://github.com/franzsilva)
- [FlutterIcon](http://fluttericon.com/) [420⭐] - Icon set generator by [Mike Hoolehan](https://github.com/ilikerobots)
- [FVM](https://github.com/leoafarias/fvm) [4565⭐] - Flutter Version Management: A simple cli to manage Flutter SDK versions.
- [Environment Configuration](https://github.com/TatsuUkraine/dart_environment_config) [92⭐] - CLI tool to generate `.env` configurations for application environments by [TatsuUkraine](https://github.com/TatsuUkraine)
- [Flutter Flavorizr](https://github.com/AngeloAvv/flutter_flavorizr) [453⭐] - CLI utility to easily generate flavors for Android and iOS in less than 3 minutes by [Angelo Cassano](https://github.com/AngeloAvv)
- [Fontify](https://github.com/westracer/fontify) [103⭐] - CLI tool to convert SVG icons to OTF font and generate Flutter-compatible class by [Igor Kharakhordin](https://github.com/westracer)
- [FlutterGen](https://github.com/FlutterGen/flutter_gen) [1460⭐] - Assets code generator for your images, fonts, colors, etc — Get rid of String-based APIs.
- [Very Good Cli](https://github.com/VeryGoodOpenSource/very_good_cli) [2150⭐] - Very Good Command Line Interface for Dart created by [Very Good Ventures](https://github.com/VeryGoodOpenSource)
- [Flutter Sidekick](https://github.com/leoafarias/sidekick) [1529⭐] - Simple app to make Flutter development more delightful by [Leo Farias](https://github.com/leoafarias)
- [Dart Code Metrics](https://github.com/dart-code-checker/dart-code-metrics) [859⭐] - Additional linter which reports code metrics, checks for anti-patterns and provides additional rules for the Dart analyzer by [Dart Code Checker team](https://github.com/dart-code-checker).
- [Melos](https://github.com/invertase/melos) [1116⭐] - Manage projects with multiple packages, automated versioning, changelogs & publishing via Conventional Commits by [Invertase](https://github.com/invertase)
### VSCode
- [Awesome Snippets](https://marketplace.visualstudio.com/items?itemName=Nash.awesome-flutter-snippets) - Collection of commonly used classes and methods by [Nash](https://twitter.com/Nash0x7E2)
- [Flutter Files](https://marketplace.visualstudio.com/items?itemName=gornivv.vscode-flutter-files) - Quick generation for BLoC templates files by context menu by [Gorniv](https://github.com/gorniv).
- [Flutter Intl](https://marketplace.visualstudio.com/items?itemName=localizely.flutter-intl) - i18n binding from arb files by [Localizely](https://twitter.com/localizely)
### IntelliJ / Android Studio
- [Enhancement_Suite](https://github.com/marius-h/flutter_enhancement_suite) [286⭐] - Search for pub.dev libraries, update version, Bloc, Snippet, etc you're covered by [Marius Höfler](https://github.com/marius-h)
- [Flutter Intl](https://plugins.jetbrains.com/plugin/13666-flutter-intl) - 18n binding from arb files by [Localizely](https://twitter.com/localizely)
### Desktop
- [Desktop Embedding](https://github.com/google/flutter-desktop-embedding) [7102⭐] - Desktop implementations of the Flutter embedding API by Google
- [Golang Desktop Embedder](https://github.com/go-flutter-desktop/go-flutter) [5856⭐] - Golang embedder for desktop by [Pierre Champion](https://github.com/pchampio)
- [Native Shell](https://github.com/nativeshell/nativeshell) [628⭐] - Experimental embedder for Flutter by [Matej Knopp](https://twitter.com/matejknopp)
- [Rust Desktop Embedder](https://github.com/gliheng/flutter-rs) [2101⭐] - Rust embedder for desktop by [juju](https://github.com/gliheng).
- [bitsdojo_window](https://github.com/bitsdojo/bitsdojo_window) <!--bitsdojo/bitsdojo_window--> - Customize windows owner-drawn chrome by [BitsDojo](https://github.com/bitsdojo)
- [Raspberry Pi Embedder](https://github.com/ardera/flutter-pi) [1587⭐] - Light-weight Embedder for Raspberry Pi by [Hannes Winkler](https://github.com/ardera)
- [Fluent UI](https://github.com/bdlukaa/fluent_ui) [2890⭐] - Microsoft's Fluent Design System in Flutter by [Bruno D'Luka](https://twitter.com/bdlukaadev)
- [MacOS UI](https://github.com/GroovinChip/macos_ui) [1820⭐] - Widgets and themes implementing the current macOS design language by [Groovin Chip](https://twitter.com/GroovinChip)
- [Ubuntu Yaru](https://github.com/ubuntu/yaru.dart) [195⭐] - Distinct look and feel of the Ubuntu Desktop by [Ubuntu](https://github.com/ubuntu)
- [Awesome Flutter Desktop](https://github.com/leanflutter/awesome-flutter-desktop) [1537⭐] - A curated list of awesome things related to Flutter desktop by [LeanFlutter](https://github.com/leanflutter)
## Podcasts
### English
- [It's all widgets! Flutter podcast](https://open.spotify.com/show/2qJVeu47e2eAum4j7lxXXv?si=d26QVJQsSRyRHeybfL_01Q) - by [Hillel Coren](https://twitter.com/hillelcoren).
### Portuguese
- [Universo Flutter](https://open.spotify.com/show/4AlxqGkkrqe0mfIx3Mi7Xt?si=1eC0a22MR1OkEAT7HErT-A) - by [Matias de Andrea](http://deandreamatias.com/).
### Spanish
- [Código Flutter](https://open.spotify.com/show/3QUTYR6jspNxHK8akJFxYf?si=MZtgjIMyTi6-WgN9Go6vZQ) - by [Guillermo García](https://guillermogarcia.es/).
### Russian
- [Flutter Dev Podcast](https://open.spotify.com/show/5qc1VFD4pkJlUYZBVTOFCI?si=OWn7VCELRO2QV03Gi2u8nA&nd=1) - by [Eugene Saturov](https://twitter.com/saturovv).
## Bonus
- [It's All Widgets!](https://itsallwidgets.com) - Open list of published apps by [Hillel Coren](https://twitter.com/hillelcoren), [Thomas Burkhart](https://twitter.com/ThomasBurkhartB), [Simon Lightfoot](https://twitter.com/devangelslondon) and [Scott Stoll](https://twitter.com/scottstoll2017)
- [Awesome Flutter Linux](https://github.com/jpnurmi/awesome-flutter-linux) - A curated list of awesome Linux-specific Flutter packages and projects by [J-P Nurmi](https://twitter.com/jpnurmi)
### Fun
- [The One](https://www.youtube.com/watch?v=sIIgtClYq0s) [459👍]
### Hardware
- [Matrix2](https://github.com/bus710/matrix2) - Sense Hat's LED matrix control game by [bus710](https://github.com/bus710)
### Guide & Interviews
- [Interview Questions](https://github.com/whatsupcoders/Flutter-Interview-Questions) - List of helpful questions you can use to interview potential candidates by [Whatsupcoders](https://github.com/whatsupcoders/Whatsupcoders-flutter)
- [The International Flutter Starter Kit](https://medium.com/flutter-community/intl-flutter-starter-kit-18415e739fb6) - Guide by the experts by [Beyza Sunay Guler](https://twitter.com/BeyzaSunayGler1) & [Nawal Alhamwi](https://twitter.com/__nawalhmw)
- [Roadmap.sh/flutter](https://roadmap.sh/flutter) - A community curated flutter developer learning roadmap from the 6th most starred GitHub project.
## Community
### Presentation material
- [Logo](https://drive.google.com/drive/folders/1GDGdQ0ghrxTNTx6aZLT41eV5sPZvV7bU) - Logo for stickers impressions
### Communication
- [Gitter](https://gitter.im/flutter/flutter) - Exchange channel
- [r/FlutterDev](https://www.reddit.com/r/FlutterDev/) - Reddit community by [u/JaapVermeulen](https://www.reddit.com/user/JaapVermeulen)
- [Discord](https://discord.gg/N7Yshp4) - Discord server to discuss and get help by [Pritykin](https://twitter.com/AndrewPritykin)
- [Flutter Community](https://github.com/fluttercommunity) - Central place for community made packages
- [OpenFlutter](https://github.com/OpenFlutter) - Make it easier 让 Flutter 更简单
- [Hashnode](https://hashnode.com/n/flutter) - Read and write posts, participate in discussions or ask questions.
#### Misc
- [Flutter Events](https://flutterevents.com) - An open list of Flutter events by [@hillelcoren](https://twitter.com/hillelcoren)
- [FlutterX](https://flutterx.com) - Searchable list of resources by [Hillel Coren](https://twitter.com/hillelcoren)
### 🇦🇴 Angola
- Facebook [Group](https://facebook.com/groups/556888664681938)
- Facebook [Page](https://facebook.com/Flutter-Angola-2076395262380886/)
- Twitter [Page](https://twitter.com/AngolaFlutter)
### 🇦🇺 Australia
- Slack [GDG Sydney](https://gdg-sydney.slack.com)
- Meetup [GDG Sydney](https://www.meetup.com/gdgsydney)
- Twitter [Flutter Sydney](https://twitter.com/FlutterSydney)
### Bangladesh
- [Facebook Group](https://www.facebook.com/groups/flutter.bangladesh/)
### 🇧🇷 Brazil
- Slack [Flutter Brasil](https://flutterbr.slack.com)
- Medium [Flutter Comunidade BR](https://medium.com/flutter-comunidade-br)
- Twitter [Flutter Comunidade BR](https://twitter.com/br_flutter)
- Meetup [São Paulo](https://www.meetup.com/flutter-sp)
- [Flutter para iniciantes](https://www.flutterparainiciantes.com.br)
### cm Cameroon
- Twitter [Flutter Cameroon](https://twitter.com/fluttercm)
- Telegram [Flutter & Dart Community CM](https://t.me/fluttercameroon)
### 🇨🇦 Canada
- Meetup [Toronto](https://www.meetup.com/FlutterToronto)
- Meetup [Montreal](https://www.meetup.com/FlutterMontreal)
- Meetup [Calgary](https://www.meetup.com/FlutterCalgary)
### 🇨🇮 Côte d'Ivoire (Ivory Coast)
- Facebook [Page](https://web.facebook.com/flutterci/)
- Facebook [Group](https://web.facebook.com/groups/1725273507587759/)
### 🇩🇰 Denmark
- Meetup [Denmark](https://www.meetup.com/Flutter-Developers-Denmark/)
### 🇪🇹 Ethiopia
- [Telegram](https://t.me/flutter_forum/)
### 🇫🇷 France
- Meetup [Bordeaux](https://www.meetup.com/fr-FR/Flutter-Bordeaux) - [Lille](https://www.meetup.com/fr-FR/Flutter-Lille) - [Paris](https://www.meetup.com/fr-FR/Flutter-Paris) - [Rennes](https://www.meetup.com/fr-FR/Flutter-Rennes) - [Nantes](https://www.meetup.com/fr-FR/flutter-nantes/)
- [Twitter](https://twitter.com/FlutterFrance)
- [Slack](https://linktr.ee/flutter_france)
- [Newsletter Flutter Digest](https://www.flutter-digest.com/)
### 🇩🇪 Germany
- Meetup [Berlin](https://www.meetup.com/flutter-berlin/) - [Düsseldorf](https://www.meetup.com/flutter-school/) - [Karlsruhe](https://www.meetup.com/Karlsruhe-Flutter-Meetup/) - [Hamburg](https://www.meetup.com/Flutter-Hamburg/) - [Stuttgart](https://www.meetup.com/Flutter-Stuttgart/) - [Munich](https://www.meetup.com/Flutter-Munich)
- Twitter [Flutter Berlin](https://twitter.com/flutterBerlin) - [Düsseldorf](https://twitter.com/flutter_school) - [Munich](https://twitter.com/FlutterMunich)
- Slack [Flutter Berlin](https://flutterberlin.slack.com/join/shared_invite/enQtMzQ1NDI0NjU4Mjc5LWVjOTg0NmUxZmU4YzZjZjFkMWNjYWYyYTI5NjMyZWE5MDZjNDM0YzgyNWQyM2EzM2E0NDE4ZmQyMzQyMzRlNjI)
- LinkedIn [Munich](https://www.linkedin.com/company/Flutter-Munich)
### 🇬🇷 Greece
- Meetup [Athens](https://www.meetup.com/Athens-Flutter-Group/)
- Slack [Flutter GR](https://join.slack.com/t/fluttergr/shared_invite/enQtNzQwODM2NzIxOTg0LWFjNWYxYzkyMTdmYWQ4ZWYyMWI2YjcyOTI4YzAzYjY2Nzk3OWNkMTkwZGRjNjRiMGFlNzgyOGRhMmEyZTQ3MmM)
### 🇮🇹 Italy
- Telegram [Flutter Italia Developers](https://t.me/flutteritdevs)
- Website [flutteritalia.dev](https://flutteritalia.dev)
### 🇮🇳 India
- Telegram [Flutter India 🇮🇳](https://t.me/flutterindia)
### 🇮🇱 Israel
- Facebook [Flutter Israel Developers](https://www.facebook.com/groups/2779846762051712)
### 🇮🇩 Indonesia
- Telegram [Flutter Indonesia](https://t.me/flutter_id)
### 🇮🇷 Iran
- Telegram [Persian Flutter](https://t.me/persian_flutter)
### 🇯🇵 Japan
- Meetup [Tokyo Flutter Developers](https://www.meetup.com/Tokyo-Flutter/)
### 🇰🇪 Kenya
- Meetup [Flutter Developers Kenya](https://www.meetup.com/KenyaFlutterDev/)
- Twitter [Flutter Developers Kenya](https://twitter.com/KenyaFlutterDev/)
### 🇰🇷 Korea
- Meetup [Flutter Korea](https://www.meetup.com/ko-KR/Flutter-Korea/)
- Facebook [Flutter Korea User Group](https://www.facebook.com/groups/flutterkorea/)
- Slack [GDG Korea #flutter channel](http://slack.gdg.kr/)
### 🇲🇾 Malaysia
- Telegram [Flutter/Dart Dev Malaysia](https://t.me/flutterdevmalaysia)
### 🇳🇬 Nigeria
- Slack [DevCenter Square](https://devcenter-square-slack.herokuapp.com)
- Telegram [FlutterLagos](https://t.me/joinchat/PAH0fVA0l7F_zMM537lo9w)
- Twitter [FlutterLagos](https://twitter.com/FlutterLagos)
### 🇵🇰 Pakistan
- [Facebook Group](https://www.facebook.com/groups/FlutterPK/)
### 🇵🇭 Philippines
- [Website](https://flutter.ph/)
- [Meetup](https://www.meetup.com/flutterph/)
- [Twitter](https://twitter.com/flutter_ph)
- [Facebook Page](https://web.facebook.com/flutterphilippines/)
- [Facebook Group](https://web.facebook.com/groups/flutterphilippines/)
- [Github](https://github.com/flutterph)
### 🇵🇱 Poland
- [Flutter Developers Poland Facebook Group](https://www.facebook.com/groups/2228619364094561/about/)
- [Flutter Poland Slack workspace](http://bit.ly/flutter-pl-slack)
- [Flutter Warsaw Meetup](https://www.meetup.com/Flutter-Warsaw/)
- [Flutter Warsaw Twitter](https://twitter.com/flutterwarsaw)
- [Flutter Warsaw YouTube Channel](https://www.youtube.com/channel/UCO7yMprO8cFwV4QnuhTMVlQ)
- [Poznan Flutter Developer Group](https://www.meetup.com/poznan-flutter-developers/)
- [Flutter Wrocław Meetup](https://www.meetup.com/Flutter-Wroc%C5%82aw/)
- Meetup [Tricity](https://www.meetup.com/pl-PL/Flutter-Tricity/)
- Twitter [Tricity](https://twitter.com/FlutterTricity/)
### 🇵🇹 Portugal
- [Meetup](https://www.meetup.com/flutterportugal)
### 🇵🇪 Peru
- Facebook [Flutter Peru Group](https://www.facebook.com/groups/flutterperu/)
- Meetup [Flutter Peru](https://meetup.com/Flutter-Peru/)
- Twitter [Flutter Peru](https://twitter.com/FlutterPeru)
### 🇷🇺 Russia
- [Telegram](https://t.me/rudart)
- [Telegram - Oh, my Flutter](https://t.me/ohmyflutter)
- Meetup [Flutter Voronezh](https://www.meetup.com/flutter-voronezh/)
### 🇪🇸 Spain
- [Madrid Community](https://flutter.madrid)
- [Madrid Meetup](https://www.meetup.com/es-ES/Flutter-Madrid)
- [Madrid Twitter](https://twitter.com/FlutterMadrid)
### 🇱🇰 Sri Lanka
- [Gitter](https://gitter.im/Colombo-Flutter-Community)
- [Slack](https://fluttercmb.slack.com/)
- [Community GitHub Page](https://github.com/Colombo-Flutter-Meetup)
- [Facebook Page](https://www.facebook.com/flutterCMB/)
### 🇹🇷 Turkey
- [Twitter](https://twitter.com/flutter_turkiye)
- [Medium](https://medium.com/flutter-türkiye/)
- [Telegram Channel](https://t.me/FlutterTurk)
- [Telegram Group](https://t.me/FlutterTR)
- [Slack](https://bit.ly/flutterTR)
- [Github](https://github.com/flutterturkey)
### 🇺🇦 Ukraine
- [Telegram](https://t.me/artflutter)
- [Twitter](https://twitter.com/ArtFlutter)
### 🇬🇧 United Kingdom
- [Flutter London](https://flutterldn.dev/)
- Meetup [London](https://www.meetup.com/FlutterLDN/)
- [Twitter](https://twitter.com/FlutterLDN)
- [YouTube](https://www.youtube.com/channel/UC_a-vGdkAIRMKT1zzZ4I2ag)
### 🇺🇸 United States
- Meetup [Chicago](https://www.meetup.com/Flutter-Chicago/)
- Meetup [Washington DC] (https://www.meetup.com/DCFlutter/)
- Meetup [NYC](https://www.meetup.com/flutter-nyc/)
### 🏴 Kurdistan
- Meetup [Kurdistan](https://www.meetup.com/Flutter-Kurdistan/)
### 🇳🇴 Norway
- [Meetup Oslo](https://www.meetup.com/Oslo-Flutter-Dart-Meetup/)
- [Meetup Stavanger](https://www.meetup.com/Flutter-Stavanger/)
- [Twitter](https://twitter.com/flutterNorway)
### 🇺🇿 Uzbekistan
- [Telegram](https://t.me/dartdevuz)
## License
[![CC0](http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0/)
To the extent possible under law, [Robert Felker](https://www.linkedin.com/in/robert-felker/) has waived all copyright and related or neighboring rights to this work.