April 2020
Intermediate to advanced
380 pages
9h 24m
English
We will be using the speech_recognition plugin here. Let's add the dependency, as follows:
dependencies: speech_recognition: "^0.3.0"
flutter packages get
On iOS, permissions are specified inside infos.plist:
<key>NSMicrophoneUsageDescription</key><string>This application needs to access your microphone</string><key>NSSpeechRecognitionUsageDescription</key><string>This application needs the speech recognition permission</string>
On Android, the permissions ...
Read now
Unlock full access