Essa solução de biblioteca é para quem usa estrutura funcional e não quer abdicar o uso de hooks já que a antiga só tem suporte para o uso de classes.
npm install react-native-voice-recognition
import VoiceRecognition from 'react-native-voice-recognition';
VoiceRecognition.startListening()
.then((result) => {
console.log(result);
})
.catch((error) => {
console.error(error);
});
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library