
Company News
Socket Joins New OpenJS Program to Fund Node.js Security Work
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.
rn-calendar-simple
Advanced tools
yarn add rn-calendar-simple
npm install rn-calendar-simple
import { useState } from 'react';
import { Text, View } from 'react-native';
import { Calendar } from 'rn-calendar-simple';
export default function App() {
const [selectedDate, setSelectedDate] = useState<Date>(new Date());
return (
<View>
<Text>{selectedDate.toLocaleString()}</Text>
<Calendar value={selectedDate} onChange={setSelectedDate} />
</View>
);
}
| Prop | Type | Description |
|---|---|---|
| value (optional) | Date | The calendar value. |
| onChange (optional) | (d: Date) => void | The method called when an update is performed. |
| min (optional) | Date | The minimum date to be selected. |
| max (optional) | Date | The maximum date to be selected. |
| monthLabel (optional) | Array | The name of the months. |
| weekLabel (optional) | Array | The name of the weeks. |
FAQs
React Native Calendar
The npm package rn-calendar-simple receives a total of 7 weekly downloads. As such, rn-calendar-simple popularity was classified as not popular.
We found that rn-calendar-simple 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.

Company News
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.

Security News
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.

Research
/Security News
A malicious Firefox extension fetches its payload after installation to evade detection, steal Google session cookies, and automate account takeover.