Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
react-native-actionsheet-native
Advanced tools
React Native ActionSheet is a JavaScript library for React Native that implements AcionSheet for Android. Its equivalent to ActionSheetIOS which is part of React Native.
To implement the Android version I used android-ActionSheet.
npm install react-native-actionsheet-native --save
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 fileTree(dir: "libs", include: ["*.jar"])
compile "com.android.support:appcompat-v7:23.0.1"
compile "com.facebook.react:react-native:+"
compile project(":react-native-actionsheet") // <--- add this
}
import com.slowpath.actionsheet.ActionSheetModule; // <--- import this
import com.slowpath.actionsheet.ActionSheetPackage; // <--- import and this
public class MainActivity extends ReactActivity {
......
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new ActionSheetPackage(this), // <------ add this line to yout MainActivity class
new MainReactPackage());
}
......
}
From your JS files for both iOS and Android:
var ActionSheet = require('react-native-actionsheet');
ActionSheet.showActionSheetWithOptions({
options: [`Disconnect`, 'Cancel'],
cancelButtonIndex: 1
},
(buttonIndex) => {
const { dispatch } = this.props;
if (buttonIndex === 0) {
// Do something.
}
});
React Native ActionSheet is BSD-licensed.
FAQs
Android ActionSheet support for React Native
The npm package react-native-actionsheet-native receives a total of 3 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.