Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/olexale/flutter_roadmap
Highly Subjective Roadmap to Flutter Development
https://github.com/olexale/flutter_roadmap
Last synced: 25 days ago
JSON representation
Highly Subjective Roadmap to Flutter Development
- Host: GitHub
- URL: https://github.com/olexale/flutter_roadmap
- Owner: olexale
- License: mit
- Created: 2020-04-05T14:31:06.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-01-30T19:16:32.000Z (9 months ago)
- Last Synced: 2024-10-01T19:04:14.716Z (about 1 month ago)
- Homepage:
- Size: 8.24 MB
- Stars: 5,446
- Watchers: 160
- Forks: 771
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-flutter-cn - Flutter开发路线图 - 由[Olexandr Leuschenko](https://github.com/olexale)制作的Flutter新手可视化路线图,包含原则、模式和框架。 (文章 / 初学者)
- awesome-roadmaps - Flutter Developer Roadmap - Roadmap for creating hybrid apps using Google's Flutter SDK. (Mobile Development)
- awesome_roadmaps - flutter roadmap
- awesome-flutter - Roadmap to Flutter Development - Highly Subjective Roadmap to Flutter Development ` 📝 a month ago ` (Beginner [🔝](#readme))
- awesome-flutter - Roadmap to Flutter Development - Visual roadmap with principles, patterns, and frameworks for Flutter newbies by [Olexandr Leuschenko](https://github.com/olexale). (Articles / Beginner)
- awesome-flutter-cn - Roadmap to Flutter Development - 面向Flutter新手的可视化路线图与原则、模式和框架,[Olexandr Leuschenko](https://github.com/olexale). (文章 / 入门)
README
![roadmap](images/FlutterRoadmap.png)
#### Dev Environment
* [Android Studio Shortcuts](https://developer.android.com/studio/intro/keyboard-shortcuts) - Shortcuts to speed up development in Android Studio.
* VSCode Shortcuts for [Windows](https://code.visualstudio.com/shortcuts/keyboard-shortcuts-windows.pdf), [macOS](https://code.visualstudio.com/shortcuts/keyboard-shortcuts-macos.pdf) - Shortcuts to speed up development in VSCode.
* [Flutter CLI](https://docs.flutter.dev/reference/flutter-cli) - Detailed Explanation to all the Flutter CLI commands.
* [Dart CLI](https://dart.dev/tools/dart-tool) - Detailed Explanation to all the Dart CLI commands (`dart fix` might be quite useful in day-to-day development).
* [DartPad](https://dartpad.dev/) - a tool for creating effective and engaging educational content for Dart and Flutter users.
* [DartPad Documentation](https://dart.dev/tools/dartpad) - DartPad documentation on [dart.dev](https://dart.dev).
* [Zapp!](https://zapp.run) - free online sandbox environment for building & sharing Dart & Flutter applications, supporting all pub.dev packages, static analysis , embedding, previewing and much more.
* [Interactive Git learning online](https://learngitbranching.js.org) - Learn git commands in an interactive way on `learngitbranching` website.#### Language
* https://dart.dev/guides/language/language-tour - a brief tour of the Dart language.
* https://dart.dev/guides/language/effective-dart - a guide to writing better Dart code.
* https://dart.dev/guides/language/analysis-options - a static analysis setup guide.
* https://dart.dev/guides/language/sound-problems - a guide on how to fix common problems in Dart code.
* https://dart.dev/tools/linter-rules - a list of all available Dart linter rules.
* https://dcm.dev/ - a tool to help you manage code quality and consistency (provides additional lint rules, code metrics and more).#### Basic Widgets
* [Widget of the Week playlist](https://youtube.com/playlist?list=PLjxrf2q8roU23XGwz3Km7sQZFTdB996iG)
* [Package of the Week playlist](https://youtube.com/playlist?list=PLjxrf2q8roU1quF6ny8oFHJ2gBdrYN_AK)
* https://flutter.dev/docs/development/ui/widgets-intro
* http://material.io
* https://developer.apple.com/design/#### Core Design Patterns
* https://en.wikipedia.org/wiki/Design_Patterns
* [The "Gang of Four" aka "Design Patterns: Elements of Reusable Object-Oriented Software" book](https://en.wikipedia.org/wiki/Design_Patterns)
* [Flutter Design Patterns](https://flutterdesignpatterns.com)
* [Refactoring Guru](https://refactoring.guru/design-patterns)#### Core Design Principles
* https://en.wikipedia.org/wiki/KISS_principle
* https://en.wikipedia.org/wiki/Don%27t_repeat_yourself
* https://en.wikipedia.org/wiki/SOLID
* https://cleancoders.com
* https://pub.dev/packages/provider
* https://pub.dev/packages/get_it
* https://pub.dev/packages/injectable#### Networking
* https://en.wikipedia.org/wiki/Representational_state_transfer
* https://pub.dev/packages/retrofit
* https://pub.dev/packages/json_serializable#### Simple Persistence
* https://pub.dev/packages/shared_preferences
* https://pub.dev/packages/flutter_secure_storage#### Database
* https://pub.dev/packages/isar
* https://pub.dev/packages/sqflite
* https://pub.dev/packages/firebase_storage
* https://pub.dev/packages/cloud_firestore
* https://pub.dev/packages/icloud_storage#### Architecture
* https://fluttersamples.com
* https://pub.dev/packages/async_redux
* https://pub.dev/packages/flutter_mobx
* https://pub.dev/packages/flutter_bloc#### Testing
* https://en.wikipedia.org/wiki/Test-driven_development
* https://en.wikipedia.org/wiki/Behavior-driven_development
* https://www.amazon.com/Test-Driven-Development-Kent-Beck/dp/0321146530#### Languages
* https://www.udacity.com/course/developing-android-apps-with-kotlin--ud9012
* https://cs193p.sites.stanford.edu#### Dart
* https://pub.dev/packages/freezed
* https://fsharpforfunandprofit.com#### Package Manager
* [Developing packages & plugins](https://flutter.dev/docs/development/packages-and-plugins/developing-packages) - How to develop packages and plugins for Flutter.
* [CocoaPods](https://cocoapods.org) - package manager for Swift and Objective-C projects.
* [Gradle](https://docs.gradle.org/current/userguide/userguide.html) - build automation system and package manager for Android.#### Profiling
* https://flutter.dev/docs/perf/rendering/ui-performance
* https://youtu.be/vVg9It7cOfY#### Flutter Internals
* https://youtu.be/UUfXWzp0-DU
* https://youtu.be/dkyY9WCGMi0
* http://www.cs.cmu.edu/~bam/uicourse/830spring20/05-830-2020-03-23-Lecture-10-Flutter.mp4
* https://mrale.ph/dartvm/
* https://surf.dev/flutter-under-the-hood/
* https://docs.flutter.dev/resources/architectural-overview
* https://surf.dev/flutter-architecture-guide/#### Security
* [OWASP MASVS](https://owasp.org/www-project-mobile-app-security/) - Mobile Application Security Verification Standard
* https://pub.dev/packages/freerasp#### Continuous Integration
* https://fastlane.tools
* https://danger.systems
* https://www.sonarqube.org
* https://codemagic.io/
* https://travis-ci.org#### Analytics
* https://firebase.google.com/docs/analytics
* https://docs.microsoft.com/en-us/appcenter/analytics/
* https://developer.mixpanel.com/docs/flutter
* https://docs.smartlook.com/docs/sdk/flutter
* https://pub.dev/packages/datadog_flutter_plugin#### Store
* https://developer.apple.com/app-store/review/guidelines/
* https://play.google.com/about/developer-content-policy/
* https://developer.android.com/distribute/best-practices/launch/launch-checklist## Contribution
Do not hesitate to add more useful links, or suggest changes to the roadmap. Opinions are highly appreciated!