https://github.com/bastndev/fluttertips
𓆩💙𓆪 Tips and tools for every "FLutter" | developer
https://github.com/bastndev/fluttertips
ai english flutter flutter-examples flutter-settings flutter-tips fluttersetting fluttertips
Last synced: 11 months ago
JSON representation
𓆩💙𓆪 Tips and tools for every "FLutter" | developer
- Host: GitHub
- URL: https://github.com/bastndev/fluttertips
- Owner: bastndev
- Created: 2023-06-22T21:21:18.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-30T01:16:40.000Z (over 1 year ago)
- Last Synced: 2024-11-30T02:24:54.211Z (over 1 year ago)
- Topics: ai, english, flutter, flutter-examples, flutter-settings, flutter-tips, fluttersetting, fluttertips
- Language: Dart
- Homepage:
- Size: 4.55 MB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Create / Export 💙
**🐥 Create App Flutter**
1. 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**
1. If you want to export for Android
- `flutter build apk`
> **Warning**
> Use for KEY in Android .
```
storePassword=
keyPassword=
keyAlias=
storeFile=.keystore
```
>- `flutter build apk --release`
>- `flutter build apk --target-platform android-arm,android-arm64`
2. If you want to export for iOS
- `flutter build ios`
> **Warning**
> Use for KEY in iOS .
>- `open ios/Runner.xcworkspace`
## Flutter Setting ⚙️
>- Necessary tools for a Flutter 💙 developer.
``Artificial intelligence bank`` [Click](https://futureailab.com/)
``Claymorphism & Neumorphism :)`` [Click](https://hype4.academy/tools)
``fluttercomponent:)`` [Click](https://fluttercomponentlibrary.com/)
- *AI / English.*
> **Warning**
> Artificial Intelligence.
>- [Lexica](https://lexica.art/)
>- [Future](https://futureailab.com/tools/)
>- [ChatGPT](https://chat.openai.com/)
> **Warning**
> Learning English.
>- [Free4talk](https://www.free4talk.com/)
>- [Youglish](https://youglish.com/)
>- [Busuu](https://www.busuu.com/)
## People 🤙
>Here you can recommend the tools to other developers, using the same forma, [font](https://www.dafontfree.io/groupe-font/) Thanks.[◾](https://www.figma.com/)[◼️](https://www.fontvalley.com/)[⚫](https://freedesignresources.net/download-in-progress/)
## Update Flutter 💙 VsCode
>- 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
## Clean Architecture 💙
```sh
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
```
## Clean Architecture Minimalistic v1.0.0 💙
```
lib/
│
├── app_name_here/
│ ├── data/
│ │ ├── models/
│ │ ├── repositories/
│ │ └── datasources/
│ ├── domain/
│ │ ├── entities/
│ │ ├── repositories/
│ │ └── usecases/
│ └── presentation/
│ ├── blocs/ (or cubits)
│ └── screens/
```















