Peace

Results 289 comments of Peace

The the day of month number is not configurable using the stock renderer. https://github.com/stephy/CalendarPicker/blob/master/CalendarPicker/Day.js#L190 A prop similar to `weekdays` and `months` would need to be added to support this. The...

`disabledDates` accepts a function that can be used to disable specific days of the week. There's an example in the sample app in this project. disabledDates | Array or Function...

Please submit a PR to add a `markedDates` feature.

Expiration not scanning for these cards on iOS with CardIO 5.4.1. - BoA MC (red background) - BoA Visa (red background) - DCU Visa (flat, which as expected doesn't scan)...

Expiration dates are recognized sporadically. See #92 Name recognition is not supported yet. See #111

Substituting `Image.prefetch` for `fetch` isn't ideal because that can flush out actual useful images from the image cache. How about using the underlying [XMLHttpRequest](https://facebook.github.io/react-native/docs/network.html)? In [Analytics.js](https://github.com/react-native-community/react-native-google-analytics/blob/f1fe02c7153752f9acc1e68533f778a2ff409d98/lib/Analytics.js#L85), replace fetch with: ```...

A new version needs to be published on npm. Until then, you can point your package.json dependency to this repo. ``` "react-native-google-analytics": "https://github.com/react-native-community/react-native-google-analytics", ```

Are there any active maintainers who will merge if I submit a PR?

Someone else had a similar issue and IIRC it had to do with the container height. Try increasing the height passed to the container style: https://github.com/BugiDev/react-native-calendar-strip/blob/master/example/App.js#L92 Does the sample app...

A drawing would help me better understand what you're envisioning. A couple scenarios: * You can use the `headerText` prop to customize the header. Listen to `onDateSelected` and set headerText...