0.3.1 • Published 7 years ago

react-native-airbitz-io v0.3.1

Weekly downloads
9
License
SEE LICENSE IN LI...
Repository
github
Last release
7 years ago

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.