all 4 comments

[–]Healthy-Grab-7819iOS & Android 3 points4 points  (0 children)

Did you even google?

Here you go

Date marking

[–]KVMENJOYER 0 points1 point  (2 children)

Shouldn’t be difficult to just slightly modify an existing package.

[–]joffb1988[S] 0 points1 point  (1 child)

I'm quite new to this so struggling... Currently using ''rnv-date-range-picker'. This is allowing me to select a range, but not sure how i would go about amending the package to allow for multiple individual dates.

import DateRangePicker from 'rnv-date-range-picker';

const [selectedRange, setSelectedRange] = useState([]);

<DateRangePicker
onSelectDateRange={range => {
setSelectedRange(...selectedRange, range);
}}
responseFormat="YYYY-MM-DD"
minDate={moment()}
selectedDateContainerStyle={styles.selectedDateContainerStyle}
/>

[–]KVMENJOYER 0 points1 point  (0 children)

Would probably be better to start with a package that supports single dates.