0.0.8 • Published 7 years ago

react-native-speech-to-text v0.0.8

Weekly downloads
26
License
-
Repository
-
Last release
7 years ago

React Native Speech to Text

React Native module that allows an React Native application to call native speech recognition APIs and to get the recognized text in return. This is a work in progress since it only works on Android. Although the work on iOS is almost finished.

Installation

First step(Download):

Run npm i react-native-speech-to-text --save

Second step(Plugin Installation):

Automatic installation

react-native link react-native-speech-to-text

Getting started

import { STTandroid, STTios } from 'react-native-speech-to-text';

(Platform.OS === 'android') {
   STTandroid.showGoogleInputDialog()
       .then((result) => {
           console.log(result)
       })
       .catch((error) => {
           console.log(error)
       })

} 
0.0.8

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago