You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Starting from ^4.0.0 when you pass numbers into speak func, e.g. await _flutterTts.speak(7) it will read it in device system language instead of the language you set before.
When I downgraded to flutter_tts: ^3.8.5, it worked as expected
Expected behavior
Read numbers in the language you set
Reproduction steps
Use Android and Install flutter_tts: 4.0.0 or higher and try to call this code
await _flutterTts.setLanguage("sv-SE");
await _flutterTts.speak("7");
You will notice it doesn't use the language you set
Configuration
Version: 4.0.0 and higher
Platform:
📱 iOS
[ X ] 🤖 Android
The text was updated successfully, but these errors were encountered:
🐛 Bug Report
Starting from ^4.0.0 when you pass numbers into speak func, e.g.
await _flutterTts.speak(7)
it will read it in device system language instead of the language you set before.all good:
not good, uses system default language instead of Swedish:
When I downgraded to flutter_tts: ^3.8.5, it worked as expected
Expected behavior
Read numbers in the language you set
Reproduction steps
Use Android and Install flutter_tts: 4.0.0 or higher and try to call this code
await _flutterTts.setLanguage("sv-SE");
await _flutterTts.speak("7");
You will notice it doesn't use the language you set
Configuration
Version: 4.0.0 and higher
Platform:
The text was updated successfully, but these errors were encountered: