Date picker with a week and month view
npm install react-native-week-month-date-pickerDate picker with a week and month view

``sh`
npm install react-native-week-month-date-picker
#### Dependencies
This library needs these dependencies to be installed as peer dependencies in your project:
`bash`
npm install react-native-reanimated react-native-gesture-handler react-native-safe-area-context date-fns
> follow react-native-reanimated, react-native-gesture-handler, and react-native-safe-area-context installation guide to install native dependencies properly.
`js
import { addDays } from 'date-fns';
import * as React from 'react';
import { SafeAreaView, StyleSheet, Text, View } from 'react-native';
import { DatePicker } from 'react-native-week-month-date-picker';
export default function App() {
const minDate = new Date();
const [selectedDate, setSelectedDate] = React.useState(new Date());
return (
maxDate={addDays(minDate, 120)}
markedDates={[minDate, addDays(new Date(), 2)]}
selectedDate={selectedDate}
onDateChange={(date) => setSelectedDate(date)}
disabledDates={[addDays(new Date(), 1), addDays(new Date(), 3)]}
allowsPastDates={false}
locale="en"
theme={{
primaryColor: 'purple',
}}
>
);
}
``
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT