🐥 Create App Flutter
- Type these command for crete flutter project in CMD
-
flutter create name_app
flutter create name_app
flutter create --platforms ios,android name_app
Warning Use FVM only you installed .
fvm flutter create name_app
fvm flutter create --platforms ios,android name_app
🐲 Export App Flutter
- If you want to export for Android
-
flutter build apk
Warning Use for KEY in Android .
storePassword=<password_de_clave> keyPassword=<password_de_alias> keyAlias=<name_de_alias> storeFile=<name_de_clave>.keystore
flutter build apk --release
flutter build apk --target-platform android-arm,android-arm64
- If you want to export for iOS
-
flutter build ios
Warning Use for KEY in iOS .
open ios/Runner.xcworkspace
- Necessary tools for a Flutter 💙 developer.
IconKitchen |
Leonardo.AI |
Quicktype |
Pub-dev |
Gitmoji |
Iconscout |
Lottie |
Artificial intelligence bank
Click
Claymorphism & Neumorphism :)
Click
fluttercomponent:)
Click
-
AI / English.
Here you can recommend the tools to other developers, using the same forma, font Thanks.◾◼️⚫
- stable version desktop or pc vscode pls
flutter upgrade
- FVM version update vscode pls
∘ fvm install 3.16.2
∘ fvm global 3.16.2
fvm current
- FVM Tips
- fvm releases
- fvm use 3.16.2
- fvm list
- fvm flutter doctor
- fvm flutter --version
lib/
│
├── config
│ ├── routes/
│ └── themes/
│
├── src
│ ├── ai_screen
│ │ ├── data/
│ │ ├── domain/
│ │ └── presentation/
│ │
│ ├── core
│ │ ├── error/
│ │ └── utils/
│ │
│ ├── l10n/
│ │
│ ├── payment
│ │ ├── data/
│ │ ├── domain/
│ │ └── presentation/
│ │
│ ├── app_name_here
│ │ ├── data
│ │ ├── domain/
│ │ └── presentation/
│ │
│ ├── shared
│ │ ├── components/
│ │ └── widgets/
│ │
│ └── store_page
│ ├── data/
│ ├── domain/
│ └── presentation/
│
└── main.dart
lib/
│
├── app_name_here/
│ ├── data/
│ │ ├── models/
│ │ ├── repositories/
│ │ └── datasources/
│ ├── domain/
│ │ ├── entities/
│ │ ├── repositories/
│ │ └── usecases/
│ └── presentation/
│ ├── blocs/ (or cubits)
│ └── screens/