react-native-airbitz-io
v0.3.1
Published
IO dependencies for running airbitz-core-js on React Native
Downloads
2
Keywords
Readme
Airbitz React Native IO depdendencies
This library creates an io
object with all the depenencies needed to run airbitz-core-js
on React Native.
Use it like this:
import { makeContext } from 'airbitz-core-js'
import { makeReactNativeIo } from 'react-native-airbitz-io'
const contextPromise = makeReactNativeIo().then(io => {
return makeContext({
apiKey: '...',
appId: '...',
io
})
})
Note that makeReactNativeIo
calls out to native code, so it returns a Promise
object.
Installing
After adding this library using yarn intall
, use react-native link
to automatically re-configure the native project files.