82 lines
1.6 KiB
Markdown
82 lines
1.6 KiB
Markdown
# hoshan
|
|
|
|
A powerfull ai Chat Application Based on Flutter.
|
|
|
|
> [!TIP]
|
|
> Web Release link is : https://web.houshan.ai/
|
|
|
|
## Getting Started
|
|
|
|
This project is a starting point for a Flutter application.
|
|
|
|
A few resources to get you started if this is your first Flutter project:
|
|
|
|
- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
|
|
- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
|
|
|
|
For help getting started with Flutter development, view the
|
|
[online documentation](https://docs.flutter.dev/), which offers tutorials,
|
|
samples, guidance on mobile development, and a full API reference.
|
|
|
|

|
|
|
|
## important Commands:
|
|
|
|
### Assets
|
|
|
|
> for build icons and assets file
|
|
>
|
|
> ```
|
|
> fluttergen
|
|
> ```
|
|
>
|
|
> if not work or first time create project then use this and if warning you select option 1-Delete
|
|
>
|
|
> ```
|
|
> dart run build_runner build
|
|
> ```
|
|
>
|
|
> `flutter_gen:` [pub dev link](https://pub.dev/packages/flutter_gen)
|
|
|
|
### App Icon
|
|
|
|
> for build launcher icons
|
|
>
|
|
> ```
|
|
> dart run flutter_launcher_icons
|
|
> ```
|
|
>
|
|
> `flutter_launcher_icons:` [pub dev link](https://pub.dev/packages/flutter_launcher_icons)
|
|
|
|
### App Name
|
|
|
|
> for change app name
|
|
>
|
|
> ```
|
|
> dart run rename_app:main all="My App Name"
|
|
> ```
|
|
>
|
|
> `rename_app:` [pub dev link](https://pub.dev/packages/rename_app)
|
|
|
|
### Android Release
|
|
|
|
> for build android apk
|
|
>
|
|
> ```
|
|
> flutter build apk
|
|
> ```
|
|
>
|
|
> for split apks
|
|
>
|
|
> ```
|
|
> flutter build apk --split-per-abi
|
|
> ```
|
|
|
|
### Web Release
|
|
|
|
> for build web
|
|
>
|
|
> ```
|
|
> flutter build web --web-renderer canvaskit
|
|
> ```
|