Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@remobile/react-native-action-sheet
Advanced tools
A pure js ActionSheet like ios ActionSheet, support ios and android
A pure js ActionSheet like ios ActionSheet, support ios and android
npm install @remobile/react-native-action-sheet --save
'use strict';
var React = require('react');
var ReactNative = require('react-native');
var {
StyleSheet,
TouchableOpacity,
View,
} = ReactNative;
var ActionSheet = require('@remobile/react-native-action-sheet');
var Button = require('@remobile/react-native-simple-button');
module.exports = React.createClass({
getInitialState() {
return {
show: false
};
},
onCancel() {
this.setState({show:false});
},
onOpen() {
this.setState({show:true});
},
render() {
return (
<View style={styles.container}>
<Button onPress={this.onOpen}>Photo</Button>
<ActionSheet
visible={this.state.show}
onCancel={this.onCancel} >
<ActionSheet.Button>Capture</ActionSheet.Button>
<ActionSheet.Button>Photo</ActionSheet.Button>
<ActionSheet.Button>Camera</ActionSheet.Button>
</ActionSheet>
</View>
);
},
});
var styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center'
},
});
##ActionSheet
visible : PropTypes.boolean.isRequired
- must use state to control ActionSheet visibleonCancel : PropTypes.func.isRequired
- use to hide ActionSheetcancelText : PropTypes.string
- default is 'Cancel'##ActionSheet.Button
buttonStyle : TouchableOpacity.propTypes.style
- set button styletextStyle : Text.propTypes.style
- set button text styleonPress : PropTypes.func
- callback for button clickFAQs
A pure js ActionSheet like ios ActionSheet, support ios and android
We found that @remobile/react-native-action-sheet 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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.