1.0.3 • Published 7 years ago
react-native-toasty-boi v1.0.3
react-native-toasty-boi
Getting started
$ npm install react-native-toasty-boi --save
Mostly automatic installation
$ react-native link react-native-toasty-boi
Manual installation
iOS
- In XCode, in the project navigator, right click
Libraries➜Add Files to [your project's name] - Go to
node_modules➜react-native-toasty-boiand addRNToastyBoi.xcodeproj - In XCode, in the project navigator, select your project. Add
libRNToastyBoi.ato your project'sBuild Phases➜Link Binary With Libraries - Run your project (
Cmd+R)<
Android
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.reactlibrary.RNToastyBoiPackage;to the imports at the top of the file - Add
new RNToastyBoiPackage()to the list returned by thegetPackages()method
- Append the following lines to
android/settings.gradle:include ':react-native-toasty-boi' project(':react-native-toasty-boi').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-toasty-boi/android') - Insert the following lines inside the dependencies block in
android/app/build.gradle:compile project(':react-native-toasty-boi')
Windows
- In Visual Studio add the
RNToastyBoi.slninnode_modules/react-native-toasty-boi/windows/RNToastyBoi.slnfolder to their solution, reference from their app. - Open up your
MainPage.csapp
- Add
using Toasty.Boi.RNToastyBoi;to the usings at the top of the file - Add
new RNToastyBoiPackage()to theList<IReactPackage>returned by thePackagesmethod
Usage
import RNToastyBoi from 'react-native-toasty-boi';
async getToken() {
try {
this.setState({token: await RNToastyBoi.getToken()}) ;
} catch (e) {
console.error(e)
}
}
this.getToken();