Add Flutter text to speech demo (#1087)

This commit is contained in:
Fangjun Kuang
2024-07-08 11:23:11 +08:00
committed by GitHub
parent 1fe12c5107
commit e832d356c7
133 changed files with 6686 additions and 143 deletions

View File

@@ -0,0 +1,38 @@
# Introduction
This document describes how the [tts](./tts) folder is created.
```bash
flutter create --platforms windows,macos,linux,android,ios tts
```
It prints the following:
```
Developer identity "Apple Development: xxx@zzz.com (xxxxxxx)" selected for iOS code signing
Creating project tts...
Resolving dependencies in `tts`... (1.3s)
Downloading packages...
Got dependencies in `tts`.
Wrote 122 files.
All done!
You can find general documentation for Flutter at: https://docs.flutter.dev/
Detailed API documentation is available at: https://api.flutter.dev/
If you prefer video documentation, consider: https://www.youtube.com/c/flutterdev
In order to run your application, type:
$ cd tts
$ flutter run
Your application code is in tts/lib/main.dart.
```
```
cd tts
flutter pub get
flutter build macos
flutter run -d macos
```