61 lines
1.1 KiB
Markdown
61 lines
1.1 KiB
Markdown
|
|
## App Store Screenshots Creators
|
||
|
|
https://www.appstorescreenshot.com/preview
|
||
|
|
|
||
|
|
## flutter commands
|
||
|
|
Create flutter project
|
||
|
|
|
||
|
|
`flutter create -i objc -a java --org com.mokkon.fcs_dev`
|
||
|
|
|
||
|
|
Build bundle
|
||
|
|
|
||
|
|
`flutter build appbundle -t lib/main-prod.dart --flavor prod`
|
||
|
|
|
||
|
|
Clean flutter build
|
||
|
|
|
||
|
|
`flutter clean`
|
||
|
|
|
||
|
|
List devices
|
||
|
|
|
||
|
|
`flutter devices`
|
||
|
|
|
||
|
|
Run current flutter project
|
||
|
|
|
||
|
|
`flutter run -d #device_id`
|
||
|
|
|
||
|
|
Get packages
|
||
|
|
|
||
|
|
`flutter pub get`
|
||
|
|
|
||
|
|
Upgrade flutter
|
||
|
|
|
||
|
|
`flutter upgrade`
|
||
|
|
|
||
|
|
Flutter doctor
|
||
|
|
|
||
|
|
`flutter doctor`
|
||
|
|
|
||
|
|
## References
|
||
|
|
|
||
|
|
Layouts
|
||
|
|
https://medium.com/flutter-community/breaking-layouts-in-rows-and-columns-in-flutter-8ea1ce4c1316
|
||
|
|
|
||
|
|
Scroll
|
||
|
|
https://medium.com/@diegoveloper/flutter-lets-know-the-scrollcontroller-and-scrollnotification-652b2685a4ac
|
||
|
|
|
||
|
|
All widgets
|
||
|
|
https://itsallwidgets.com/
|
||
|
|
|
||
|
|
Widget Catalog
|
||
|
|
https://flutter.dev/docs/development/ui/widgets
|
||
|
|
|
||
|
|
Key Value Store
|
||
|
|
https://github.com/hivedb/hive
|
||
|
|
|
||
|
|
Complex UI
|
||
|
|
https://www.youtube.com/watch?v=FCyoHclCqc8
|
||
|
|
|
||
|
|
Animated Login
|
||
|
|
https://www.youtube.com/watch?v=NHAIiAmxTAU
|
||
|
|
|
||
|
|
Flutter Widget with RenderObject
|
||
|
|
https://nicksnettravels.builttoroam.com/create-a-flutter-widget/
|