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-calendar-picker
Advanced tools
Calendar Picker Component for React Native
This is a Calendar Picker Component for React Native
To use the calendar you just need to:
npm install react-native-calendar-picker
How to use it:
import React, { Component } from 'react';
import {
AppRegistry,
Dimensions,
StyleSheet,
Text,
View
} from 'react-native';
var CalendarPicker = require('react-native-calendar-picker'),
CalendarPicker2;
CalendarPicker2 = React.createClass({
getInitialState: function() {
return {
date: new Date(),
};
},
onDateChange: function(date) {
this.setState({ date: date });
},
render: function() {
return (
<View style={styles.container}>
<CalendarPicker
selectedDate={this.state.date}
onDateChange={this.onDateChange}
screenWidth={Dimensions.get('window').width}
selectedBackgroundColor={'#5ce600'} />
<Text style={styles.selectedDate}> Date: { this.state.date.toString() } </Text>
</View>
);
}
});
const styles = StyleSheet.create({
container: {
marginTop: 30,
},
selectedDate: {
backgroundColor: 'rgba(0,0,0,0)',
color: '#000',
}
});
Prop | Type | Description |
---|---|---|
weekdays | array | List of week days. Eg. ['Mo', 'Tue', ...] Must be 7 days |
months | array | List of months names. |
startFromMonday | boolean | Default first day of week will be Sunday. You can set start of week from Monday. |
previousTitle | string | Title of button for previous month. |
nextTitle | string | Title of button for next month. |
selectedDayColor | string | Color for selected day |
textStyle | object | Style overall text. Change fontFamily, color, etc. |
scaleFactor | float | Optional. Default scales to window width |
minDate | Date | Optional. Specifies minimum date to be selected |
maxDate | Date | Optional. Specifies maximum date to be selected |
Drop an email to alves@stephanimoroni.com
Open issues
Submit PRs.
I would like to call out some contributors who have been helping with this project
FAQs
Calendar Picker Component for React Native
The npm package react-native-calendar-picker receives a total of 18,576 weekly downloads. As such, react-native-calendar-picker popularity was classified as popular.
We found that react-native-calendar-picker demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers 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.