🐥 Create App Flutter
- Type these command for crete flutter project in CMD
flutter create name_appDetails
flutter create name_appflutter create --platforms ios,android name_app
Warning Use FVM only you installed .
fvm flutter create name_appfvm flutter create --platforms ios,android name_app
🐲 Export App Flutter
- If you want to export for Android
flutter build apkDetails
Warning Use for KEY in Android .
storePassword=<password_de_clave> keyPassword=<password_de_alias> keyAlias=<name_de_alias> storeFile=<name_de_clave>.keystoreflutter build apk --releaseflutter build apk --target-platform android-arm,android-arm64
- If you want to export for iOS
flutter build iosDetails
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 bankClick
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.dartlib/
│
├── app_name_here/
│ ├── data/
│ │ ├── models/ │ │ ├── repositories/
│ │ └── datasources/
│ ├── domain/
│ │ ├── entities/
│ │ ├── repositories/
│ │ └── usecases/
│ └── presentation/
│ ├── blocs/ (or cubits)
│ └── screens/

















