speech_to_text_google_dialog 0.0.6
speech_to_text_google_dialog: ^0.0.6 copied to clipboard
This package is implemented to display the Google speech to text dialog.
Speech To Text Google #
This package is implemented to display the Google speech to text dialog. There is no need to get any permission from the user for this. This package is currently available on Android.
Usage #
Example #
This example shows how to display a google speech to text dialog and get the result.
bool isServiceAvailable = await SpeechToTextGoogle.getInstance()
.showGoogleDialog(onTextReceived: (data) {
},
// locale: "en-US",
);
copied to clipboard