I.목표 앱상에서 주소검색등의 화면에 음성인식 기능을 추가하여 편리성을 향상시키려고 한다. II. 연구및 개발내용 1. 설치 npm i @react-native-voice/voice –save 2. 사용방법 import Voice from “@react-native-voice/voice”; class AddrSearch extends PureComponent { constructor(props) { super(props); this.state = { title : “”, voiceStat : “” }; Voice.onSpeechStart = this.onSpeechStart; Voice.onSpeechEnd = this.onSpeechEnd; Voice.onSpeechError = this.onSpeechError; […]