react-native-datepicker icon indicating copy to clipboard operation
react-native-datepicker copied to clipboard

DatePicker is displaying wrong default date

Open ahmadallo1 opened this issue 4 years ago • 2 comments

Issue

DatePicker is displaying wrong default date just in March for years greater than 2024

if we select 30-03-2025 and we open the picker the picker is showing 29-03-2025 or if we select 29-03-2026 and we open the picker the picker is showing 28-03-2026

Expected Behavior

the picker should show same date as the selected date 30-03-2025 ------> 30-03-2025

Code

<DatePicker date={this.state.defaultDate} mode="date" format="YYYY-MM-DD" onDateChange={(date) => { console.log(date); this.setState({ defaultDate: date, }); }} />

Environment

"react-native-datepicker": "^1.7.2",

  1. react-native -v:
  2. node -v:
  3. npm -v:
  4. yarn --version:
  5. target platform: Android | iOS
  6. operating system:

ahmadallo1 avatar Feb 18 '21 13:02 ahmadallo1

+1 have a similar issue, usually on Android

yoavprat avatar Apr 08 '21 10:04 yoavprat

Its supports toISOString() method in release mode? I got an issue in release mode only. Perfectly working in debug mode apps.

pandiyanmadhan avatar Apr 26 '21 17:04 pandiyanmadhan