1.0.0 • Published 5 years ago

react-native-handsoemhorse-toast-android v1.0.0

Weekly downloads
1
License
ISC
Repository
-
Last release
5 years ago

Native Module: react-native-helloworld

Getting started to write React Native bridge module for Android.

How to Run the Example

cd Example
npm install
react-native run-android

How to Use the Module

  1. Create a new React Native project:

    react-native init NewProject
  2. Add the local module to dependencies in package.json:

    "dependencies": {
    	"react": "16.0.0-alpha.6",
    	"react-native": "0.43.3",
    	"react-native-helloworld":"file:../"
    },
  3. Link dependencies:

    react-native link
  4. Use the module in index.android.js:

    import MyModule from 'react-native-helloworld';
    
    const onButtonPress = () => {
        MyModule.alert('Hello World');
    };

Blog

React Native Bridging Modules for Android from Scratch on Windows