melihberberolu / react-native-helloworld

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

License:MIT License


Languages

Language:Objective-C 38.2%Language:Java 25.9%Language:JavaScript 21.1%Language:Python 14.9%