├── flutter.png
├── LICENSE
└── README.md
/flutter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CoderUni/FlutterResources/HEAD/flutter.png
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2020 FlutterTutorial
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Flutter Resources
2 |
3 | A list of Free Flutter resources that will help people get started with Flutter.
4 | 
5 |
6 | # Content
7 |
8 | - [Introduction](#introduction)
9 | - [Beginner](#beginner)
10 | - [Intermediate](#intermediate)
11 | - [Advanced](#advanced)
12 | - [UI Kit](#ui-kit)
13 | - [Youtube Channels](#youtube-channels)
14 | - [Books](#books)
15 | - [Firebase](#firebase)
16 | - [Animations Plugins](#animationPlugins)
17 | - [Machine Learning](#machine-learning)
18 | - [Best Practices](#bestPractices)
19 | - [Reference Apps](#referenceApps)
20 | - [Useful Blogs/Websites](#usefulBlogs/Websites)
21 | - [Contributing](#contributing)
22 | - [Support Me](#support-me)
23 |
24 | # Introduction
25 |
26 | - [Flutter](https://flutter.dev/) is Google’s UI toolkit for building beautiful, natively compiled applications for mobile, web, and desktop from a single codebase
27 | - [Flutter Installation](https://flutter.dev/docs/get-started/install) - Get Started by installing Flutter in your machine
28 | - [Flutter for Beginners](https://www.youtube.com/watch?v=fmPmrJGbb6w&list=PLlxmoA0rQ-Lw6tAs2fGFuXGP13-dWdKsB) - Youtube playlist about building apps with Flutter
29 | - [Dart for Beginners](https://www.youtube.com/watch?v=5rtujDjt50I&list=PLlxmoA0rQ-LyHW9voBdNo4gEEIh0SjG-q) - Youtube playlist about the Dart programming language
30 | - [Flutter Basics](https://www.youtube.com/watch?v=1ukSR1GRtMU&list=PL4cUxeGkcC9jLYyp2Aoh6hcWuxFDX6PBJ) - Youtube playlist that teaches the basics and uses the learned knowledge to create a Time app
31 | - [Http Requests](https://medium.com/swlh/how-to-make-http-requests-in-flutter-d12e98ee1cef) - A medium article teaching how to make http requests to a server
32 | - [Awesome Flutter Talk](https://github.com/Rahiche/awesome-flutter-talks) - is an Github repo that save a list of Youtube url about Flutter Talk from 2011 to 2020
33 | - [Beginner's Guide](https://github.com/antz22/ultimate-guide-to-flutter) Comprehensive guide to the basics of Flutter and Firebase
34 |
35 | # Beginner
36 |
37 | - [Widget of the Week](https://www.youtube.com/playlist?list=PLjxrf2q8roU23XGwz3Km7sQZFTdB996iG) - Introducing new widgets every week by [Flutter](https://www.youtube.com/c/flutterdev)
38 | - [Roadmap to Flutter Development](https://github.com/olexale/flutter_roadmap) - Visual roadmap with principles, patterns, and frameworks for Flutter newbies by [Olexandr Leuschenko](https://github.com/olexale)
39 | - [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)
40 | - [Angela Yu's Flutter Beginner's Course](https://www.appbrewery.co/p/flutter-development-bootcamp-with-dart)
41 | - [Getting Started with Flutter](https://www.raywenderlich.com/24499516-getting-started-with-flutter) - Interactive Flutter Beginner Guide with various downloadable materials.
42 |
43 |
44 | # Intermediate
45 |
46 | - [FlutterFire](https://firebase.flutter.dev/docs/overview/) - FlutterFire is a set of Flutter plugins which connect your Flutter application to [Firebase](https://firebase.google.com/)
47 | - [State Management](https://flutter.dev/docs/development/data-and-backend/state-mgmt/options) - A list of State-Management Approaches in Flutter
48 | - [Flutter & Firebase](https://www.youtube.com/playlist?list=PL4cUxeGkcC9j--TKIdkb3ISfRbJeJYQwC) - A video playlist tutorial about reating Flutter & Firebase app by NetNinja
49 | - [Provider](https://pub.dev/packages/provider) - A wrapper around InheritedWidget to make them easier to use and more reusable by [Remi Rousselet](https://github.com/rrousselGit)
50 | - [RiverPod](https://riverpod.dev/) - Compile safe, Provider, without its limitations, Doesn't depend on Flutter by [Remi Rousselet](https://github.com/rrousselGit)
51 | - [MVVM + Provider](https://github.com/shubham-chhimpa/flutter-mvvm-provider-demo) - A Flutter MVVM + Provider implementation sample application by [Shubham Chhimpa](https://github.com/shubham-chhimpa)
52 | - [Animation Intro](https://flutter.dev/docs/development/ui/animations) - An introduction in creating animations by [Flutter](https://flutter.dev/)
53 | - [Animation Intro Youtube Playlist Version](https://www.youtube.com/watch?v=GXIJJkq_H8g&list=PLjxrf2q8roU2v6UqYlt_KPaXlnjbYySua) by [Flutter](https://www.youtube.com/c/flutterdev)
54 | - [Animation Tutorial](https://www.youtube.com/watch?v=OtrWXLfGtqE&list=PL4cUxeGkcC9gP1qg8yj-Jokef29VRCLt1) - A video playlist tutorial about using animations in Flutter by [NetNinja](https://www.youtube.com/channel/UCW5YeuERMmlnqo4oq8vwUpg)
55 | - [Animation CheatSheet](https://codesearchonline.com/index.php/flutter-implicit-animation/) - Flutter Implicit Animation Widgets CheatSheet
56 | - [Animated Selection Slide](https://github.com/sbilketay/animated_selection_slide/blob/master/README.md) - Animated Selection Slide
57 | - [Forms in Flutter](https://www.youtube.com/watch?v=2C16OP-xIwU&list=PLaY6YJMqp51ctPHYg1VAZ7wIs30cjhXNC) - Forms in Flutter with Validation Unit Test
58 | - [Animation in Flutter](https://www.didierboelens.com/2018/06/animations-in-flutter-easy-guide-tutorial/) - Animation in Flutter Easy Guide by [boeledi](https://github.com/boeledi/guillotine)
59 | - [AWS Amplify](https://docs.amplify.aws/start/q/integration/flutter) - AWS Amplify is an end-to-end solution that enables mobile and front-end web developers to build and deploy secure, scalable full stack applications, powered by [AWS](https://aws.amazon.com/amplify/)
60 |
61 | # Advanced
62 | - [Flutter Bloc](https://pub.dev/packages/flutter_bloc) - A flutter package that helps implementing the bloc architecture by [Felix Angelov](https://github.com/felangel/)
63 | - [RxDart](https://pub.dev/packages/rxdart) - A wrapper around streams that adds additional capabilities to Streams and StreamControllers by [ReactiveX](https://github.com/ReactiveX)
64 | - [Rive Introduction](https://www.youtube.com/watch?v=6QZy5sYozVI) - An introduction in using Rive for complex Flutter animations by [Flutter](https://www.youtube.com/c/flutterdev)
65 | - [Flutter Hooks](https://pub.dev/packages/flutter_hooks) - Hooks are a new kind of object that manages a Widget life-cycles. They exist for one reason: increase the code-sharing between widgets by removing duplicates by [dash-overflow.net](https://pub.dev/publishers/dash-overflow.net/packages). A Flutter implementation of React hooks.
66 | - [Immutable Data Patterns in Dart and Flutter](https://dart-academy.cdn.ampproject.org/c/s/dart.academy/immutable-data-patterns-in-dart-and-flutter/amp/) - Immutable Data Patterns in Dart and Flutter
67 | - [Slivers](https://medium.com/swlh/flutter-slivers-and-customscrollview-1aaadf96e35a) - A medium article explaining what Slivers are and how to use them.
68 | - [Stacked](https://www.filledstacks.com/post/flutter-state-management-with-stacked/) - A video (plus article) on the use of Stacked for architecture and state management.
69 | - [Gesture System](https://medium.com/flutter-community/flutter-deep-dive-gestures-c16203b3434f) - Flutter Deep Dive on Gestures
70 | # UI Kit
71 |
72 | - [Flutter Screens](https://github.com/samarthagarwal/FlutterScreens) - Collection of nice flutter samples.
73 | - [Flutter-UI-Kit](https://github.com/iampawan/Flutter-UI-Kit) - Collection of useful UIs in a UIKit.
74 | - [FLUTTER UI CHALLENGE](https://github.com/tomialagbe/flutter_ui_challenges) - Profile App, Book Reader App, Drink Shop App .
75 | - [Beautiful Dashboard](https://github.com/Ivaskuu/dashboard) - Awesome Dashboard Component .
76 | - [Gorgeous Login](https://github.com/huextrat/TheGorgeousLogin) - Smooth Login Template .
77 | - [Flutter Samples](https://github.com/diegoveloper/flutter-samples) - Collection of Amazing flutter samples .
78 | - [Starter Kit](https://github.com/KingWu/flutter_starter_kit) - Starter kit for beginners to learn Bloc pattern, RxDart, sqflite, Fluro and Dio .
79 | - [Let's Clone](https://github.com/javico2609/flutter-challenges) - 18 Amazing Templates.
80 | - [Payment App UI](https://github.com/longhoang2984/flutter_payment_app_ui) - Stunning Payment App UI.
81 | - [ChatBot 🤖](https://github.com/aniketambore/ChatbotSpirit-Codebase) - Incredible Chatbot using Flutter and Dialogflow.
82 | - [Covid-19-Global-Mapper](https://github.com/aniketambore/Covid-19-Global-Mapper-Flutter-Dart-Project-) - Tracking Covid-19 cases on a Map based view.
83 | - [GetWidget](https://github.com/ionicfirebaseapp/getwidget) - GetWidget is open source libraries that come with pre-build 1000+ UI components.
84 | - [NASA APOD](https://github.com/sainiteshb/NASA-Apod-flutter) - NASA APOD fetches data from NASA API and displays information.
85 | - [Flutter Intro Slider](https://pub.dev/packages/intro_slider) - Flutter Intro Slider is a flutter plugin that helps you make a cool intro for your app
86 | - [Flutter Rating Bar](https://pub.dev/packages/flutter_rating_bar) - A simple yet fully customizable rating bar for flutter which also include a rating bar indicator, supporting any fraction of rating.
87 | - [E-Commerece Admin Side](https://github.com/Manthan-tech/E-Commerce_App_Admin_Side) - Flutter + firebase full frontend and backend for managing E-Commerece
88 | - [E-Commerce App UI](https://github.com/robertodevs/flutter_ecommerce_template) - e-Commerce UI Kit has the goal to help you to save time with the frontend development. You can use this template to build your apps for Android and iOS in Flutter.
89 | - [Trending Headlines](https://github.com/sainiteshb/News-App-Flutter) - Trending Headlines using the NewsAPI to fetch latest data
90 | - [Staggered Grid View](https://github.com/letsar/flutter_staggered_grid_view) - GridView with tiles of variable sizes
91 | - [Flip Pannel](https://github.com/hnvn/flutter_flip_panel) - Flip panel with built-in animation
92 | - [Flutter Tags](https://github.com/Dn-a/flutter_tags) - Tags with different customizations
93 | - [Slidable](https://github.com/letsar/flutter_slidable) - Slidable list item with left and right slide actions
94 | - [Table Calendar](https://github.com/aleksanderwozniak/table_calendar) - Calendar organized neatly into a Table, with vertical autosizing
95 |
96 | # Youtube Channels
97 |
98 | - [Flutter](https://www.youtube.com/c/flutterdev) - The official flutter channel is the best place to get started
99 | - [The Net Ninja](https://www.youtube.com/c/TheNetNinja) - One of the best channels for flutter in English
100 | - [Sanskar Tiwari](https://www.youtube.com/channel/UCsPdgUIoOBTBI1UmulW1pdw) - A channel for beautiful UI and API integration.
101 | - [Devefy](https://www.youtube.com/channel/UC9dwxEAvy-zCMAS7rdox46w) - A channel for UI and flutter web tutorials
102 | - [Raja Yogan](https://www.youtube.com/channel/UCjBxAm226XZvgrkO-JyjJgQ) - A channel for logical and Backend tutorials for flutter
103 | - [The Flutter Way](https://www.youtube.com/channel/UCJm7i4g4z7ZGcJA_HKHLCVw) - A channel for creating beautiful UIs
104 | - [Reso Coder](https://www.youtube.com/c/ResoCoder) - Reso Coder by [Matt Rešetár] Matt is an app developer with a knack for teaching others. Working as a Flutter freelancer and most importantly developer educator
105 | - [Mtechviral](https://www.youtube.com/c/MTechViral) - First Indian YouTuber who started flutter tutorials
106 | - [Easy Approach](https://www.youtube.com/channel/UC4hWRtPpBaq72ERUuKsvO7g) - A great channel which teaches complex flutter concepts in a simple manner with short and crisp videos.
107 | - [RetroPortal Studio](https://www.youtube.com/channel/UCW2ATgwtNrsBrE-piE2TIrA) - An amazing channel for UI and custom widgets development
108 | - [Santos Enoque](https://www.youtube.com/watch?v=Dy_zBF6rJFc&list=PLmnT6naTGy2SC82FMSCrvZNogg5T1H7iF) - Building an E-commerce app in Flutter
109 | - [Academind](https://www.youtube.com/watch?v=x0uinJvhNxI) - An entire crash course for beginners in Flutter
110 | - [FreeCodeCamp.org](https://www.youtube.com/watch?v=pTJJsmejUOQ) - A full tutorial for building iOS and Android apps in Flutter
111 | - [Google Developers](https://www.youtube.com/watch?v=fq4N0hgOWzU&list=PLOU2XLYxmsIJ7dsVN4iRuA7BT8XHzGtCr) - A playlist of Flutter guides from Google themselves
112 | - [Afgprogrammer](https://www.youtube.com/channel/UCuXm84E6yWF0dIKmwvwc9sQ) - An extremely helpful channel for user interface design.
113 | - [Techie Blossom](https://www.youtube.com/channel/UC3wqIkiaOUpO6EjJoCwH6_Q) - Showing tutorial videos for industry standard apps using flutter.
114 | - [FilledStacks](https://www.youtube.com/c/FilledStacks/playlists) - A Channel for Flutter Production Code
115 | - [ReactBits](https://www.youtube.com/c/ReactBits/playlists) - Flutter + Appwrite Tutorial Series
116 | - [Flutter Explained](https://www.youtube.com/c/FlutterExplained) - The Wikipedia For Flutter development
117 | - [Flutter in Practice](https://www.youtube.com/playlist?list=PLhXZp00uXBk5TSY6YOdmpzp1yG3QbFvrN) - Practical programming course for beginners
118 | - [Desi programmer](https://www.youtube.com/c/DesiProgrammer) - Here you can also get some tutorials in Hindi
119 | - [Ovidius Mazuru](https://www.youtube.com/channel/UCJW25d8mW8ciz0DQC-5XNsQ/featured) - A Channel for beginners in Flutter to have a strong fundamental understanding
120 | - [CodeX](https://www.youtube.com/c/CodeXdev/playlists) - CodeX shares tutorial videos related to Mobile Application Development and other programming aspects. If you're student, beginner programmer or even expert developer consider subscribing the channel to be updated with latest of Mobile development.
121 | - [Reso Coder](https://www.youtube.com/channel/UCSIvrn68cUk8CS8MbtBmBkA) - Reso Coder by [Matt Rešetár] Matt is an app developer with a knack for teaching others. Working as a Flutter freelancer and most importantly developer educator.
122 | - [Babbar CODE HELP](https://www.youtube.com/channel/UCldyi11QYNXYXiLjVbyw5dA) - Have a Flutter Series 2020 playlist in Hindi (Project Based Learning) .
123 | - [Marcus Ng](https://www.youtube.com/c/MarcusNg/videos) - Marcus gives amazing tutorials for web & mobile responsive UI.
124 | - [Mitch Koko](https://www.youtube.com/c/MitchKoko/videos) - This channel has some awesome small games implemented in Flutter with really cool UIs.
125 | - [Raja Yogan](https://www.youtube.com/watch?v=p3YNDjaCgxc) - A channel for flutter + firebase tutorials, you will learn how to make automated push notification.
126 | - [Johannes Milke](https://www.youtube.com/channel/UC0FD2apauvegCcsvqIBceLA) - A useful channel with short, helpful videos to learn about Flutter widgets & other cool stuff.
127 | - [Code With Andrea](https://www.youtube.com/channel/UCrTnsT4OYZ53l0QGKqLeD5Q) - A helpful channel to learn Dart & Flutter. Andrea, the instructor explains well.
128 | - [Osama Asif](https://www.youtube.com/channel/UC9rZnxaqFwTZYMzuJUEKOLQ) - This channel has some awesome content in Flutter.
129 | - [London App Brewery](https://www.youtube.com/channel/UCVD5Vh9LhLBxp3o1vRNyf_w) - The best channel to learn Flutter.
130 | - [Hitesh Choudhary](https://www.youtube.com/playlist?list=PLRAV69dS1uWT_JKom7xDKdHl1gp3o_AH1) - A great playlist to learn Bloc.
131 | - [Tech with Tim](https://www.youtube.com/playlist?list=PLzMcBGfZo4-knQWGK2IC49Q_5AnQrFpzv) - Great tutorials for beginners.
132 | - [Abhishvek](https://www.youtube.com/channel/UCIxJGxcB4pSrIvuv8FyuqUA) - This channel is great for those who wants to start with custom backend for Flutter.
133 | - [Rivaan Ranawat](https://www.youtube.com/c/RivaanRanawat) - This channel is great for those who wants a tutorial to learn and build clone apps for their portfolio.
134 | - [Tadas Petra](https://www.youtube.com/channel/UCNaJHBXsvbfkItVMNmzmTPQ) -A useful channel covers the newest trends in the World of Flutter and Dart.
135 | - [Destiny Ed](https://www.youtube.com/channel/UCFEtn_pdpZPT9vMxovgTp0A) - Good channel for those who like to learn from building complete apps.
136 | # Books
137 |
138 | - [Flutter Complete Reference](https://fluttercompletereference.com/) - Complete reference to Flutter developement, including examples.
139 | - [Beginning App Development with Flutter](https://www.amazon.com/Beginning-App-Development-Flutter-Cross-Platform/dp/1484251806) - Easy to understand starter book.
140 | - [Flutter for Beginners](https://www.amazon.com/Flutter-Beginners-introductory-cross-platform-applications/dp/1788996089) - A step-by-step guide to learning Flutter and Dart 2.X
141 | - [Learn Google Flutter Fast: 65 Example Apps](https://www.amazon.com/Learn-Google-Flutter-Fast-Example/dp/1092297375) - Learn Google Flutter by example. Over 65 example mini-apps.
142 | - [Practical Flutter Improve your Mobile Development with Google’s Latest Open-Source SDK](https://www.amazon.com/Practical-Flutter-Improve-Development-Open-Source-ebook/dp/B07VJ7FDN5) - Concise practical examples for quick and easy build
143 |
144 |
145 | # Firebase
146 |
147 | - [Firebase Installation](https://firebase.google.com/docs/flutter/setup?platform=android) - Official Documentation on how to setup Firebase for your Flutter apps
148 | - [FlutterFire](https://firebase.flutter.dev/docs/overview/) - Official Documentation of Flutter's Firebase plugins
149 | - [Firestore vs RTDB](https://firebase.google.com/docs/database/rtdb-vs-firestore) - Official Documentation that helps you choose between Realtime Database vs Firestore
150 | - [Firestore vs RTDB Article](https://medium.com/zero-equals-false/firebase-cloud-firestore-v-s-firebase-realtime-database-931d4265d4b0) - An article that points out the uses of Firestore vs RTDB
151 | - [Firestore with Flutter Tutorial](https://medium.com/@atul.sharma_94062/how-to-use-cloud-firestore-with-flutter-e6f9e8821b27)
152 | - [Rowy - Manage Cloud Firestore Data with Spreadsheet UI](https://www.rowy.io/) - Connect to your database and build cloud functions. All in your browser. Forget CLIs, config, and DevOps. Focus on building your apps.
153 |
154 | # Animation Plugins
155 |
156 | - [Dough](https://pub.dev/packages/dough) - Let's create Squishy UI.
157 | - [Animation Set](https://github.com/YYFlutter/flutter-animation-set) - Simplified Flutter stagger animation.
158 | - [Spinkit](https://github.com/jogboms/flutter_spinkit) - A Collection of loading indicators animated with flutter.
159 | - [Drawing Animation](https://github.com/biocarl/drawing_animation) - Create Drawing Animations by SVG paths .
160 | - [Simple Animation](https://github.com/felixblaschke/simple_animations/tree/master/simple_animations) -Simple Animations is a powerful framework to create beautiful custom animations in no time.
161 | - [Animated Text Kit](https://github.com/aagarwal1012/Animated-Text-Kit) - A collection of some cool and awesome text animations.
162 |
163 | # Machine Learning
164 |
165 | - [TFLite](https://pub.dev/packages/tflite) - A Flutter plugin for accessing TensorFlow Lite. Supports both iOS and Android.
166 | - [Speech_to_Text](https://pub.dev/packages/speech_to_text) - A Flutter plugin that exposes device specific speech to text recognition capability.
167 | - [Firebase_ML_Vision](https://pub.dev/packages/firebase_ml_vision) - Flutter plugin for Firebase machine learning vision services.
168 | - [Edge_Detection](https://pub.dev/packages/edge_detection) - A flutter plugin to detect edges of objects, scan paper, detect corner, detect rectangle. It allows cropping of the detected object image and returns the path of the cropped image.
169 | - [MLKit](https://github.com/azihsoyn/flutter_mlkit) - A Flutter plugin to use the Firebase ML Kit.
170 | - [Flutter Mobile Vision](https://github.com/edufolly/flutter_mobile_vision) - Flutter implementation of Google Mobile Vision.
171 |
172 | # Best Pratices
173 |
174 | - [State Management Grand Tour](https://fireship.io/lessons/flutter-state-management-guide/) - An article/video explaining the different state management approaches and why you should not use setState
175 | - [Safe Async](https://recipes.tst.sh/docs/architecture/safe-async.html) - An article that teaches how to make FutureBuilder/StreamBuilder properly
176 | - [Performance](https://flutter.dev/docs/perf/rendering/best-practices) - Official Flutter documentation on how to make your Flutter app as performant as possible
177 | - [Stateless Widget vs Widget Function](https://stackoverflow.com/questions/53234825/what-is-the-difference-between-functions-and-classes-to-create-reusable-widgets) - A StackOverFlow answer explaining why its better to use Stateless Widgets to build reusable widgets.
178 | - [Style Guides](https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo) - A Github Wiki showing the style guides for a Flutter project
179 | - [Best Practices](https://medium.com/flutter-community/flutter-best-practices-and-tips-7c2782c9ebb5) - An article that shows the best practices in Flutter
180 | - [Responsive Design in Flutter](https://flutter.dev/docs/development/ui/layout/responsive) - An article about how to create a responsive design that works for all devices like phones, web and desktop
181 |
182 | # Reference Apps
183 | - [It's All Widgets](https://itsallwidgets.com/) - An open list of apps built on flutter.
184 |
185 | # Useful Blogs/Websites
186 | - [Flutter Dev's](http://flutterdevs.com/blog/)
187 | - [Flutter Medium](https://medium.com/flutter)
188 | - [Dev Flutter](https://dev.to/t/flutter?utm_source=devglan)
189 | - [Geeky Ant's Flutter](https://blog.geekyants.com/flutter/home)
190 | - [Flutter Gems](https://fluttergems.dev/)
191 | - [The International Flutter Starter Kit](https://medium.com/flutter-community/intl-flutter-starter-kit-18415e739fb6)
192 | - [Flutter Interview Questions](https://github.com/whatsupcoders/Flutter-Interview-Questions)
193 |
194 | # Contributing
195 |
196 | _Good Quality contributions are welcomed. Just don't make spammy low-quality contributions like adding an extra space._
197 |
198 | # Support Me
199 |
200 |
201 |
--------------------------------------------------------------------------------