Go to file
Aakash N S 84f1701ea1 Update README.md 2015-11-02 02:34:44 +05:30
android Changed build tools version to 23.0.1 2015-11-02 01:49:15 +05:30
examples/ExampleApp Updated example to use latest version 2015-11-02 01:55:48 +05:30
.gitignore Single Choice example 2015-11-01 03:20:53 +05:30
DialogAndroid.js Cleaned up Javascript code 2015-11-02 00:00:21 +05:30
LICENSE Initial commit 2015-10-31 20:23:37 +05:30
README.md Update README.md 2015-11-02 02:34:44 +05:30
index.js Added examples for implemented features 2015-11-01 22:58:44 +05:30
package.json Bumped version to 0.0.2 2015-11-02 01:50:43 +05:30

README.md

react-native-dialogs

React Native wrappers for https://github.com/afollestad/material-dialogs

Installation

Install the npm package 'react-native-dialogs'. Inside your React Native project, run (example):

npm install --save react-native-dialogs

In android/settings.gradle, remove the line include ':app' and add the following lines (example):

include ':app', ':react-native-dialogs'
project(':react-native-dialogs').projectDir = file('../node_modules/react-native-dialogs/android')

NOTE : If you have included other libraries in your project, the include line will contain the other dependencies too, apart from ':app' and ':react-native-dialogs'

In android/app/build.gradle, add a dependency to ':react-native-dialogs' and URL of the Jitpack maven repository (to download the library https://github.com/afollestad/material-dialogs) :

repositories {
    maven { url "https://jitpack.io" }
}

dependencies {
    // after other dependencies
    compile project(':react-native-dialogs')
}

The changes should look like this

Next, you need to change the MainActivity of your app to extends FragmentActivity instead of Activity (otherwise dialogs will not be rendered), and register ReactNativeDialogsPackage :

import android.support.v4.app.FragmentActivity;
import com.aakashns.reactnativedialogs.ReactNativeDialogsPackage;

public class MainActivity extends FragmentActivity implements DefaultHardwareBackBtnHandler {
    //...
  
          mReactInstanceManager = ReactInstanceManager.builder()
                //...
                .addPackage(new MainReactPackage())
                .addPackage(new ReactNativeDialogsPackage(this)) // <- ADD THIS LINE!
                //...
                .build();

See this changelog for reference.

Now you're finally ready to start using module in your React Native application. See this changelog for an example that uses DialogAndroid.