Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-native-actionsheet-native

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-actionsheet-native

Android ActionSheet support for React Native

  • 0.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

React Native ActionSheet

React Native ActionSheet is a JavaScript library for React Native that implements AcionSheet for Android. Its equivalent of ActionSheetIOS which is part of React Native.

For implementation the Android version I used android-ActionSheet.

Requirements

  • React Native >= 0.40.0
  • Android

Installing React Native ActionSheet

npm install react-native-actionsheet-native --save
# OR
yarn add react-native-actionsheet-native

Preparing

React native >= 0.40.0

You can run inside of your project folder the next command:

react-native link react-native-actionsheet-native

React native >= 0.33.0 AND < 0.40.0

  • In android/setting.gradle
...
include ':react-native-actionsheet-native', ':app'
project(':react-native-actionsheet-native').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-actionsheet-native/android')
  • In android/app/build.gradle
apply plugin: "com.android.application"
...
dependencies {
  ...
  compile project(":react-native-actionsheet") // <--- add this
  ...
}
  • Register Module (in MainActivity.java)
import com.slowpath.actionsheet.ActionSheetPackage;  // <--- import and this

public class MyApplication extends Application implements ReactApplication {

  ......

  @Override
  protected List<ReactPackage> getPackages() {
    return Arrays.asList(
      new ActionSheetPackage(), // <------ add this line to you application
      new MainReactPackage());
  }

  ......

}

Updated your MainActivity

Now, you need to update your MainActivity. The MainActivity should extends ReactFragmentActivity for working with this library.

public class MainActivity extends ReactFragmentActivity {
  ...
}

Usage

From your JS files for both iOS and Android:

import ActionSheet from 'react-native-actionsheet';

ActionSheet.showActionSheetWithOptions({
  options: ['Disconnect', 'Cancel'],
  cancelButtonIndex: 1
},
(buttonIndex) => {
  const { dispatch } = this.props;
  if (buttonIndex === 0) {
    // Do something.
  }
});

Customization of Android action sheet

If you want to customize view of Android ActionSheet, you will need to read this article

License

React Native ActionSheet is BSD-licensed.

Keywords

FAQs

Package last updated on 11 Apr 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc