Peace
Peace
Try setting `scrollToOnSetSelectedDate={false}` https://github.com/BugiDev/react-native-calendar-strip#initial-data-and-ondateselected-handler Your code might need to call `scrollToDate` with that disabled.
Another user had requested to center the selected date. A new prop will need to be added to prevent it from doing that. Is the desired behavior to not scroll...
Here's the code from the other PR that centers the selected date: https://github.com/BugiDev/react-native-calendar-strip/blob/master/src/CalendarStrip.js#L327 ``` if (this.props.scrollToOnSetSelectedDate) { // Scroll to selected date, centered in the week const scrolledDate = moment(mDate);...
I can see how that behavior would be annoying. There should be additional logic to check whether the selected date is currently within view and not adjust the week. Would...
I have not tested it with persian. If you find a fix, I'll merge the PR right away.
This would be a useful feature to have. Would you like to submit a PR? It will take a good amount of work to add this. There are full calendar...
It may be running out of vertical space and clipping the text. What height does the inspector report for the text elements? Try to increase the height of the container...
Increase the height of the parent container housing RNCS (the root of the calendar strip)
Refer to the section on localization: https://github.com/BugiDev/react-native-calendar-strip#localization Expand the example to see the locale object.
`react-native-calendar-strip` now has a scrollable feature in 2.0.0. https://github.com/BugiDev/react-native-calendar-strip