
Product
Redesigned Repositories Page: A Faster Way to Prioritize Security Risk
Our redesigned Repositories page adds alert severity, filtering, and tabs for faster triage and clearer insights across all your projects.
react-native-actionsheet-native
Advanced tools
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.
npm install react-native-actionsheet-native --save
# OR
yarn add react-native-actionsheet-native
You can run inside of your project folder the next command:
react-native link react-native-actionsheet-native
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')
android/app/build.gradle
apply plugin: "com.android.application"
...
dependencies {
...
compile project(":react-native-actionsheet") // <--- add this
...
}
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());
}
......
}
Now, you need to update your MainActivity. The MainActivity should extends ReactFragmentActivity
for working with this library.
public class MainActivity extends ReactFragmentActivity {
...
}
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.
}
});
If you want to customize view of Android ActionSheet, you will need to read this article
React Native ActionSheet is BSD-licensed.
FAQs
Android ActionSheet support for React Native
The npm package react-native-actionsheet-native receives a total of 1 weekly downloads. As such, react-native-actionsheet-native popularity was classified as not popular.
We found that react-native-actionsheet-native demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Product
Our redesigned Repositories page adds alert severity, filtering, and tabs for faster triage and clearer insights across all your projects.
Security News
Multiple deserialization flaws in PyTorch Lightning could allow remote code execution when loading untrusted model files, affecting versions up to 2.4.0.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.