flutter_tts icon indicating copy to clipboard operation
flutter_tts copied to clipboard

Flutter Text to Speech package

Results 159 flutter_tts issues
Sort by recently updated
recently updated
newest added

## 🐛 Bug Report I got this report from Firebase Crashlytics **Version:** 3.3.3 **Platform:** - [x] :iphone: iOS - [ ] :robot: Android

## 🐛 Bug Report ### Expected behavior no crash ### Reproduction steps `speak` and `awaitSpeakCompletion(true)` code sample ```dart import 'package:flutter/material.dart'; import 'package:flutter_tts/flutter_tts.dart'; void main() { WidgetsFlutterBinding.ensureInitialized(); runApp(App()); } class App...

enhancement

## 🐛 Bug Report Since upgrading to XCode 13.3 I get this this error in this package and flutter_inappwebview when archiving my project. It happens on my mac and when...

bug

synthesizeToFile() currently saves files into: /storage/emulated/0/Android/data/com.example.myapp/files/ which is what is returned for example by path_provider using getExternalStorageDirectory(), which can be null on iOS. Here's a comment from path_provider.dart ``` ///...

enhancement

### Problem I needed access to the underlying gender APIs provided by iOS, however it had to be done on a library level. ### Changelog - Converts Maps of voices...

## 🐛 Bug Report On Android (not test in iOS) when speak my sentence which contains ".", "!" or "?" followed by space char or \n. The setProgressHandler stop listening...

question

## 🐛 Bug Report The following logic works on Android but not on web: ``` FlutterTts flutterTts = FlutterTts(); await flutterTts.speak(text1); (after a few seconds) await flutterTts.stop(); await flutterTts.speak(text2); ```...

bug

## 🐛 Bug Report In my app, playing text-to-speech worked with Flutter 2.2 on an iPhone XS Max with iOS 14.7.1. It doesn't with Flutter 2.5 anymore, showing the error...

bug

Hello and thank you for this library. I want to know if a language hasn't been downloaded on a device, how can I use this library to download it and...

I need to check if the phone has TTS support. I call it with GetDefaultEngine but it doesn't return empty or not empty. The await command explodes. I got it...