BugiDev / react-native-calendar-strip

Easy to use and visually stunning calendar component for React Native.
MIT License
944 stars 327 forks source link

fixed shown wrong selected date when using updateWeekView immediately after call setSelectedDate. #299

Closed karuru6225 closed 3 years ago

karuru6225 commented 3 years ago

Fixed a bug where calling updateWeekView immediately after calling setSelectedDate would display an unintended date. It was because setState was running asynchronously.

It is reenact with the following code. https://snack.expo.io/E4K9r9rrQ

peacechen commented 3 years ago

Thanks @karuru6225 for this fix