web_view_tts
一個用於在 Flutter WebView Android 中新增文字轉語音支援的 Flutter 外掛
在 Flutter WebView 中新增文字轉語音支援(Android)
{"sdk":"flutter"}^2.0.2^5.4.3+7^3.5.1{"sdk":"flutter"}^2.0.0以下為英文專案原文快照,最新內容請造訪 GitHub。
Flutter library To add Text-To-Speech Support in Android WebView
Using flutter_inappwebview for WebView and flutter_tts for Android TTS
Import these Libraries in your pubspec.yaml
flutter_inappwebview: ^5.4.3+7
web_view_tts: 0.0.1
Add WebView in your Project , Check flutter_inappwebview docs for setting up WebView
And check flutter_tts docs for adding TTS
in your onLoadStart callback of flutter_inappwebview , add this method
onLoadStart(controller) async {
await WebViewTTS.init(controller: controller);
}
Checkout /example app for more details
The web_view_tts lib supports the following TTS Api's:
This library will add TTS polyfill for android only , because IOS WebView already supports this
This is Just The Initial Version feel free to Contribute or Report any Bug!