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
{{ message }}
This repository has been archived by the owner on Oct 15, 2022. It is now read-only.
I've implemented a system in Flutter in which I can choose my language from a menu. The program starts by default in English but when I try to set it to Spanish or French it doesn't work.
I know that in the readme.md says that to make it work, more configuration is needed. The question is what do I need to do to make it work in other languages.
I've implemented a system in Flutter in which I can choose my language from a menu. The program starts by default in English but when I try to set it to Spanish or French it doesn't work.
I know that in the readme.md says that to make it work, more configuration is needed. The question is what do I need to do to make it work in other languages.
_speech.listen( locale: widget._language ).then((result) => setState(() {
print("Listening ${result}");
this.setState(() {
transcription = result;
});
}));
The text was updated successfully, but these errors were encountered: