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
Hi, I am getting this error while following a tutorial on youtube for ionic framework, I installed the plugin and ran this command 'ionic cordova run browser'. this is the code
import { SpeechRecognition } from '@ionic-native/speech-recognition';
Hi, I am getting this error while following a tutorial on youtube for ionic framework, I installed the plugin and ran this command 'ionic cordova run browser'. this is the code
import { SpeechRecognition } from '@ionic-native/speech-recognition';
constructor(public navCtrl: NavController, public navParams: NavParams, public speech: SpeechRecognition) {
}
async isSpeechSupported(): Promise {
const isAvailable = await this.speech.isRecognitionAvailable();
console.log(isAvailable);
alert(isAvailable);
return isAvailable;
}
The text was updated successfully, but these errors were encountered: