1.0.1 • Published 6 years ago

react-native-speach-text v1.0.1

Weekly downloads
10
License
-
Repository
github
Last release
6 years ago

react-native-speach-text

React Native Speach Text is a module that lets you translate plane text into a voice.

Getting started

$ npm install react-native-speach-text --save

Mostly automatic installation

$ react-native link react-native-speach-text

Manual installation

iOS

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-speach-text and add RNSpeachText.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRNSpeachText.a to your project's Build PhasesLink Binary With Libraries
  4. Run your project (Cmd+R)<

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import com.reactlibrary.RNSpeachTextPackage; to the imports at the top of the file
  • Add new RNSpeachTextPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-speach-text'
    project(':react-native-speach-text').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-speach-text/android')
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-speach-text')

Usage

import RNSpeachText from 'react-native-speach-text';

export default SpeachText extends Component{
  
  componentDidMount(){
    RNSpeachText.speak({
      text : "Hello World this is a react native speach text native module, and this voice will stop in 5,4,3,2,1, now!"
    });
    
    setTimeout(() => {
      RNSpeachText.stop();
    },6000);
  }
  
  _getAvailableVoices(){
     RNSpeachText.supportedVoices((voices) => {
        console.log(voices,'voices');
     });
  }
  
  render(){
    return(
        <View />
    );
  } 
}

Methods

MethodiOSAndroid
RNSpeachText.speak({ text : "Hello World" })yesyes
RNSpeachText.pause()yesyes
RNSpeachText.stop()yesyes
RNSpeachText.resume()yesno
RNSpeachText.isPaused((paused) => {})yesyes
RNSpeachText.isSpeaking((speaking) => {})yesyes
RNSpeachText.supportedVoices((voices) => {})yesno

Of courseeee, your PR are welcome :)