An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          


Vite logo

## 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.


IconKitchen


Leonardo.AI


Quicktype


Pub-dev


Gitmoji


Iconscout


Lottie

``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/
```


Vite logo