{"id":22706802,"url":"https://github.com/bigbinary/react-native-calendars","last_synced_at":"2025-08-13T21:42:02.991Z","repository":{"id":42067442,"uuid":"423443963","full_name":"bigbinary/react-native-calendars","owner":"bigbinary","description":null,"archived":false,"fork":false,"pushed_at":"2022-07-21T10:05:40.000Z","size":7893,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":19,"default_branch":"master","last_synced_at":"2025-03-29T20:44:41.070Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bigbinary.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-11-01T11:42:58.000Z","updated_at":"2021-12-14T12:42:11.000Z","dependencies_parsed_at":"2022-08-12T04:00:22.700Z","dependency_job_id":null,"html_url":"https://github.com/bigbinary/react-native-calendars","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bigbinary/react-native-calendars","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigbinary%2Freact-native-calendars","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigbinary%2Freact-native-calendars/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigbinary%2Freact-native-calendars/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigbinary%2Freact-native-calendars/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bigbinary","download_url":"https://codeload.github.com/bigbinary/react-native-calendars/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigbinary%2Freact-native-calendars/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270322775,"owners_count":24564643,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-13T02:00:09.904Z","response_time":66,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-10T10:09:45.963Z","updated_at":"2025-08-13T21:42:02.885Z","avatar_url":"https://github.com/bigbinary.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# React Native Calendars 🗓️ 📆\n[![Version](https://img.shields.io/npm/v/react-native-calendars.svg)](https://www.npmjs.com/package/react-native-calendars)\n[![Build Status](https://travis-ci.org/wix/react-native-calendars.svg?branch=master)](https://travis-ci.org/wix/react-native-calendars)\n\nThis library is being used in [neeto-invoice-rn](https://github.com/bigbinary/neeto-invoice-rn)\n\nThis module includes various customizable **React-Native** calendar components.\n\nThe package is both **Android** and **iOS** compatible.\n\n## Try it out\n\nYou can run example module by performing these steps:\n\n```\n$ git clone git@github.com:wix/react-native-calendars.git\n$ npm install\n$ react-native run-ios\n```\n\nYou can check example screens source code in [example module screens](https://github.com/wix-private/wix-react-native-calendar/tree/master/example/src/screens)\n\nThis project is compatible with Expo/CRNA (without ejecting), and the examples have been [published on Expo](https://expo.io/@community/react-native-calendars-example)\n\n## Installation\n\n```\n$ npm install --save react-native-calendars\n```\n\nThe solution is implemented in JavaScript so no native module linking is required.\n\n## Usage\n\n`import {`[Calendar](#calendar), [CalendarList](#calendarlist), [Agenda](#agenda)`} from 'react-native-calendars';`\n\nAll parameters for components are optional. By default the month of current local date will be displayed.\n\nEvent handler callbacks are called with `calendar objects` like this:\n\n```javascript\n{\n  day: 1,      // day of month (1-31)\n  month: 1,    // month of year (1-12)\n  year: 2017,  // year\n  timestamp,   // UTC timestamp representing 00:00 AM of this date\n  dateString: '2016-05-13' // date formatted as 'YYYY-MM-DD' string\n}\n```\n\nParameters that require date types accept `YYYY-MM-DD` formatted `date-strings`, JavaScript date objects, `calendar objects` and `UTC timestamps`.\n\nCalendars can be localized by adding custom locales to `LocaleConfig` object:\n\n```javascript\nimport {LocaleConfig} from 'react-native-calendars';\n\nLocaleConfig.locales['fr'] = {\n  monthNames: ['Janvier','Février','Mars','Avril','Mai','Juin','Juillet','Août','Septembre','Octobre','Novembre','Décembre'],\n  monthNamesShort: ['Janv.','Févr.','Mars','Avril','Mai','Juin','Juil.','Août','Sept.','Oct.','Nov.','Déc.'],\n  dayNames: ['Dimanche','Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi'],\n  dayNamesShort: ['Dim.','Lun.','Mar.','Mer.','Jeu.','Ven.','Sam.'],\n  today: 'Aujourd\\'hui'\n};\nLocaleConfig.defaultLocale = 'fr';\n```\n\n### Calendar\n\n\u003ckbd\u003e\n  \u003cimg src=\"https://github.com/wix-private/wix-react-native-calendar/blob/master/demo/calendar.gif?raw=true\"\u003e\n\u003c/kbd\u003e\n\n#### Basic parameters\n\n```javascript\n\u003cCalendar\n  // Initially visible month. Default = Date()\n  current={'2012-03-01'}\n  // Minimum date that can be selected, dates before minDate will be grayed out. Default = undefined\n  minDate={'2012-05-10'}\n  // Maximum date that can be selected, dates after maxDate will be grayed out. Default = undefined\n  maxDate={'2012-05-30'}\n  // Handler which gets executed on day press. Default = undefined\n  onDayPress={(day) =\u003e {console.log('selected day', day)}}\n  // Handler which gets executed on day long press. Default = undefined\n  onDayLongPress={(day) =\u003e {console.log('selected day', day)}}\n  // Month format in calendar title. Formatting values: http://arshaw.com/xdate/#Formatting\n  monthFormat={'yyyy MM'}\n  // Handler which gets executed when visible month changes in calendar. Default = undefined\n  onMonthChange={(month) =\u003e {console.log('month changed', month)}}\n  // Hide month navigation arrows. Default = false\n  hideArrows={true}\n  // Replace default arrows with custom ones (direction can be 'left' or 'right')\n  renderArrow={(direction) =\u003e (\u003cArrow/\u003e)}\n  // Do not show days of other months in month page. Default = false\n  hideExtraDays={true}\n  // If hideArrows = false and hideExtraDays = false do not switch month when tapping on greyed out\n  // day from another month that is visible in calendar page. Default = false\n  disableMonthChange={true}\n  // If firstDay=1 week starts from Monday. Note that dayNames and dayNamesShort should still start from Sunday\n  firstDay={1}\n  // Hide day names. Default = false\n  hideDayNames={true}\n  // Show week numbers to the left. Default = false\n  showWeekNumbers={true}\n  // Handler which gets executed when press arrow icon left. It receive a callback can go back month\n  onPressArrowLeft={subtractMonth =\u003e subtractMonth()}\n  // Handler which gets executed when press arrow icon right. It receive a callback can go next month\n  onPressArrowRight={addMonth =\u003e addMonth()}\n  // Disable left arrow. Default = false\n  disableArrowLeft={true}\n  // Disable right arrow. Default = false\n  disableArrowRight={true}\n  // Disable all touch events for disabled days. can be override with disableTouchEvent in markedDates\n  disableAllTouchEventsForDisabledDays={true}\n  // Replace default month and year title with custom one. the function receive a date as parameter\n  renderHeader={(date) =\u003e {/*Return JSX*/}}\n  // Enable the option to swipe between months. Default = false\n  enableSwipeMonths={true}\n/\u003e\n```\n\n#### Date marking\n\n**Disclaimer**: Make sure that `markedDates` param is immutable. If you change `markedDates` object content but the reference to it does not change calendar update will not be triggered.\n\nDot marking\n\n\u003ckbd\u003e\n  \u003cimg height=50 src=\"https://github.com/wix-private/wix-react-native-calendar/blob/master/demo/marking1.png?raw=true\"\u003e\n\u003c/kbd\u003e\n\u003cp\u003e\u003c/p\u003e\n\n```javascript\n\u003cCalendar\n  // Collection of dates that have to be marked. Default = {}\n  markedDates={{\n    '2012-05-16': {selected: true, marked: true, selectedColor: 'blue'},\n    '2012-05-17': {marked: true},\n    '2012-05-18': {marked: true, dotColor: 'red', activeOpacity: 0},\n    '2012-05-19': {disabled: true, disableTouchEvent: true}\n  }}\n/\u003e\n```\n\nYou can customize a dot color for each day independently.\n\nMulti-Dot marking\n\n\u003ckbd\u003e\n \u003cimg height=50 src=\"https://github.com/wix-private/wix-react-native-calendar/blob/master/demo/marking4.png?raw=true\"\u003e\n\u003c/kbd\u003e\n\u003cp\u003e\u003c/p\u003e\n\nUse `markingType={'multi-dot'}` if you want to display more than one dot. Both the `\u003cCalendar/\u003e` and `\u003cCalendarList/\u003e` support multiple dots by using `dots` array in `markedDates` prop.\nThe property `color` is mandatory while `key` and `selectedColor` are optional. If key is omitted then the array index is used as key. If `selectedColor` is omitted then `color` will be used for selected dates.\n\n```javascript\nconst vacation = {key: 'vacation', color: 'red', selectedDotColor: 'blue'};\nconst massage = {key: 'massage', color: 'blue', selectedDotColor: 'blue'};\nconst workout = {key: 'workout', color: 'green'};\n\n\u003cCalendar\n  markingType={'multi-dot'}\n  markedDates={{\n    '2017-10-25': {dots: [vacation, massage, workout], selected: true, selectedColor: 'red'},\n    '2017-10-26': {dots: [massage, workout], disabled: true}\n  }}\n/\u003e\n```\n\nPeriod marking\n\n\u003ckbd\u003e\n  \u003cimg height=50 src=\"https://github.com/wix-private/wix-react-native-calendar/blob/master/demo/marking2.png?raw=true\"\u003e\n\u003c/kbd\u003e\n\n\u003ckbd\u003e\n  \u003cimg height=50 src=\"https://github.com/wix-private/wix-react-native-calendar/blob/master/demo/marking3.png?raw=true\"\u003e\n\u003c/kbd\u003e\n\u003cp\u003e\u003c/p\u003e\n\n```javascript\n\u003cCalendar\n  markingType={'period'}\n  markedDates={{\n    '2012-05-20': {textColor: 'green'},\n    '2012-05-22': {startingDay: true, color: 'green'},\n    '2012-05-23': {selected: true, endingDay: true, color: 'green', textColor: 'gray'},\n    '2012-05-04': {disabled: true, startingDay: true, color: 'green', endingDay: true}\n  }}\n/\u003e\n```\n\nMulti-period marking\n\n\u003ckbd\u003e\n  \u003cimg height=50 src=\"https://github.com/wix-private/wix-react-native-calendar/blob/master/demo/marking6.png?raw=true\"\u003e\n\u003c/kbd\u003e\n\u003cp\u003e\u003c/p\u003e\n\n**CAUTION**: This marking is only fully supported by the `\u003cCalendar/\u003e` component because it expands its height. Usage with `\u003cCalendarList/\u003e` might lead to overflow issues.\n\n```javascript\n\u003cCalendar\n  markingType='multi-period'\n  markedDates={{\n    '2017-12-14': {\n      periods: [\n        {startingDay: false, endingDay: true, color: '#5f9ea0'},\n        {startingDay: false, endingDay: true, color: '#ffa500'},\n        {startingDay: true, endingDay: false, color: '#f0e68c'}\n      ]\n    },\n    '2017-12-15': {\n      periods: [\n        {startingDay: true, endingDay: false, color: '#ffa500'},\n        {color: 'transparent'},\n        {startingDay: false, endingDay: false, color: '#f0e68c'}\n      ]\n    }\n  }}\n/\u003e\n```\n\nCustom marking allows you to customize each marker with custom styles.\n\n\u003ckbd\u003e\n  \u003cimg height=50 src=\"https://github.com/wix-private/wix-react-native-calendar/blob/master/demo/custom.png?raw=true\"\u003e\n\u003c/kbd\u003e\n\u003cp\u003e\u003c/p\u003e\n\n```javascript\n\u003cCalendar\n  markingType={'custom'}\n  markedDates={{\n    '2018-03-28': {\n      customStyles: {\n        container: {\n          backgroundColor: 'green'\n        },\n        text: {\n          color: 'black',\n          fontWeight: 'bold'\n        }\n      }\n    },\n    '2018-03-29': {\n      customStyles: {\n        container: {\n          backgroundColor: 'white',\n          elevation: 2\n        },\n        text: {\n          color: 'blue'\n        }\n      }\n    }\n  }}\n/\u003e\n```\n\n**NEW!** While we still don't support multi marking type, we add the possibility to combine between `period` and `simple`.\n```javascript\n\u003cCalendar\n  markingType={'period'}\n  markedDates={{\n    '2012-05-15': {marked: true, dotColor: '#50cebb'},\n    '2012-05-16': {marked: true, dotColor: '#50cebb'},\n    '2012-05-21': {startingDay: true, color: '#50cebb', textColor: 'white'},\n    '2012-05-22': {color: '#70d7c7', textColor: 'white'},\n    '2012-05-23': {color: '#70d7c7', textColor: 'white', marked: true, dotColor: 'white'},\n    '2012-05-24': {color: '#70d7c7', textColor: 'white'},\n    '2012-05-25': {endingDay: true, color: '#50cebb', textColor: 'white'}\n  }}\n/\u003e\n```\n\u003ckbd\u003e\n  \u003cimg height=350 src=\"https://github.com/wix-private/wix-react-native-calendar/blob/master/demo/multi-marking.png?raw=true\"\u003e\n\u003c/kbd\u003e\n\u003cp\u003e\u003c/p\u003e\n\nKeep in mind that different marking types are not compatible. You can use just one marking style for a calendar.\n\n#### Displaying data loading indicator\n\n\u003ckbd\u003e\n  \u003cimg height=50 src=\"https://github.com/wix-private/wix-react-native-calendar/blob/master/demo/loader.png?raw=true\"\u003e\n\u003c/kbd\u003e\n\u003cp\u003e\u003c/p\u003e\n\nThe loading indicator next to the month name will be displayed if `\u003cCalendar/\u003e` has `displayLoadingIndicator` prop and the `markedDates` collection does not have a value for every day of the month in question. When you load data for days, just set `[]` or special marking value to all days in `markedDates` collection.\n\n#### Customizing look \u0026 feel\n\n```javascript\n\u003cCalendar\n  // Specify style for calendar container element. Default = {}\n  style={{\n    borderWidth: 1,\n    borderColor: 'gray',\n    height: 350\n  }}\n  // Specify theme properties to override specific styles for calendar parts. Default = {}\n  theme={{\n    backgroundColor: '#ffffff',\n    calendarBackground: '#ffffff',\n    textSectionTitleColor: '#b6c1cd',\n    textSectionTitleDisabledColor: '#d9e1e8',\n    selectedDayBackgroundColor: '#00adf5',\n    selectedDayTextColor: '#ffffff',\n    todayTextColor: '#00adf5',\n    dayTextColor: '#2d4150',\n    textDisabledColor: '#d9e1e8',\n    dotColor: '#00adf5',\n    selectedDotColor: '#ffffff',\n    arrowColor: 'orange',\n    disabledArrowColor: '#d9e1e8',\n    monthTextColor: 'blue',\n    indicatorColor: 'blue',\n    textDayFontFamily: 'monospace',\n    textMonthFontFamily: 'monospace',\n    textDayHeaderFontFamily: 'monospace',\n    textDayFontWeight: '300',\n    textMonthFontWeight: 'bold',\n    textDayHeaderFontWeight: '300',\n    textDayFontSize: 16,\n    textMonthFontSize: 16,\n    textDayHeaderFontSize: 16\n  }}\n/\u003e\n```\n#### Customize days titles with disabled styling\n```javascript\n\u003cCalendar\n  theme={{\n    textSectionTitleDisabledColor: '#d9e1e8'\n  }}\n  markedDates={{\n    ...this.getDisabledDates('2012-05-01', '2012-05-30', [0, 6])\n  }}\n  disabledDaysIndexes={[0, 6]}\n/\u003e\n```\n\n#### Advanced styling\n\nIf you want to have complete control over the calendar styles you can do it by overriding default `style.ts` files. For example, if you want to override `\u003cCalendarHeader/\u003e` style first you have to find stylesheet id for this file:\n\nhttps://github.com/wix/react-native-calendars/blob/master/src/calendar/header/style.ts#L60\n\nIn this case it is `stylesheet.calendar.header`. Next you can add overriding stylesheet to your theme with this id.\n\nhttps://github.com/wix/react-native-calendars/blob/master/example/src/screens/calendars.tsx#L142\n\n```javascript\ntheme={{\n  arrowColor: 'white',\n  'stylesheet.calendar.header': {\n    week: {\n      marginTop: 5,\n      flexDirection: 'row',\n      justifyContent: 'space-between'\n    }\n  }\n}}\n```\n\n#### Individual day header styling\n\nUsing the above advanced styling, it is possible to set styles independently for each day's header. If we wanted to make the header for Sunday red, and Saturday blue, we could write something like the following:\n\n```javascript\ntheme={{\n  'stylesheet.calendar.header': {\n    dayTextAtIndex0: {\n      color: 'red'\n    },\n    dayTextAtIndex6: {\n      color: 'blue'\n    }\n  }\n}}\n```\n\n\u003ckbd\u003e\n  \u003cimg height=50 src=\"https://github.com/wix-private/wix-react-native-calendar/blob/master/demo/day-header-style.png?raw=true\"\u003e\n\u003c/kbd\u003e\n\u003cp\u003e\u003c/p\u003e\n\n**Disclaimer**: Issues that arise because something breaks after using stylesheet override will not be supported. Use this option at your own risk.\n\n#### Overriding day component\n\nIf you need custom functionality not supported by current day component implementations you can pass your own custom day component to the calendar.\n\n```javascript\n\u003cCalendar\n  style={[styles.calendar, {height: 300}]}\n  dayComponent={({date, state}) =\u003e {\n    return (\n      \u003cView\u003e\n        \u003cText style={{textAlign: 'center', color: state === 'disabled' ? 'gray' : 'black'}}\u003e\n          {date.day}\n        \u003c/Text\u003e\n      \u003c/View\u003e\n    );\n  }}\n/\u003e\n```\n\nThe `dayComponent` prop has to receive a RN component or a function that receive props. The `dayComponent` will receive such props:\n\n* state - disabled if the day should be disabled (this is decided by base calendar component).\n* marking - `markedDates` value for this day.\n* date - the date object representing this day.\n\n**Tip**: Don't forget to implement `shouldComponentUpdate()` for your custom day component to make the calendar perform better\n\nIf you implement an awesome day component please make a PR so that other people could use it :)\n\n### CalendarList\n\n\u003ckbd\u003e\n  \u003cimg src=\"https://github.com/wix-private/wix-react-native-calendar/blob/master/demo/calendar-list.gif?raw=true\"\u003e\n\u003c/kbd\u003e\n\u003cp\u003e\u003c/p\u003e\n\n`\u003cCalendarList/\u003e` is scrollable semi-infinite calendar composed of `\u003cCalendar/\u003e` components. Currently it is possible to scroll 4 years back and 4 years to the future. All parameters that are available for `\u003cCalendar/\u003e` are also available for this component. There are also some additional params that can be used:\n\n```javascript\n\u003cCalendarList\n  // Callback which gets executed when visible months change in scroll view. Default = undefined\n  onVisibleMonthsChange={(months) =\u003e {console.log('now these months are visible', months);}}\n  // Max amount of months allowed to scroll to the past. Default = 50\n  pastScrollRange={50}\n  // Max amount of months allowed to scroll to the future. Default = 50\n  futureScrollRange={50}\n  // Enable or disable scrolling of calendar list\n  scrollEnabled={true}\n  // Enable or disable vertical scroll indicator. Default = false\n  showScrollIndicator={true}\n  ...calendarParams\n/\u003e\n```\n\n#### Horizontal CalendarList\n\n\u003ckbd\u003e\n  \u003cimg src=\"https://github.com/wix-private/wix-react-native-calendar/blob/master/demo/horizontal-calendar-list.gif?raw=true\"\u003e\n\u003c/kbd\u003e\n\u003cp\u003e\u003c/p\u003e\n\nYou can also make the `CalendarList` scroll horizontally. To do that you need to pass specific props to the `CalendarList`:\n\n```javascript\n\u003cCalendarList\n  // Enable horizontal scrolling, default = false\n  horizontal={true}\n  // Enable paging on horizontal, default = false\n  pagingEnabled={true}\n  // Set custom calendarWidth.\n  calendarWidth={320}\n  ...calendarListParams\n  ...calendarParams\n/\u003e\n```\n\n### Agenda\n\u003ckbd\u003e\n  \u003cimg src=\"https://github.com/wix-private/wix-react-native-calendar/blob/master/demo/agenda.gif?raw=true\"\u003e\n\u003c/kbd\u003e\n\u003cp\u003e\u003c/p\u003e\n\nAn advanced `Agenda` component that can display interactive listings for calendar day items.\n\n```javascript\n\u003cAgenda\n  // The list of items that have to be displayed in agenda. If you want to render item as empty date\n  // the value of date key has to be an empty array []. If there exists no value for date key it is\n  // considered that the date in question is not yet loaded\n  items={{\n    '2012-05-22': [{name: 'item 1 - any js object'}],\n    '2012-05-23': [{name: 'item 2 - any js object', height: 80}],\n    '2012-05-24': [],\n    '2012-05-25': [{name: 'item 3 - any js object'}, {name: 'any js object'}]\n  }}\n  // Callback that gets called when items for a certain month should be loaded (month became visible)\n  loadItemsForMonth={(month) =\u003e {console.log('trigger items loading')}}\n  // Callback that fires when the calendar is opened or closed\n  onCalendarToggled={(calendarOpened) =\u003e {console.log(calendarOpened)}}\n  // Callback that gets called on day press\n  onDayPress={(day) =\u003e {console.log('day pressed')}}\n  // Callback that gets called when day changes while scrolling agenda list\n  onDayChange={(day) =\u003e {console.log('day changed')}}\n  // Initially selected day\n  selected={'2012-05-16'}\n  // Minimum date that can be selected, dates before minDate will be grayed out. Default = undefined\n  minDate={'2012-05-10'}\n  // Maximum date that can be selected, dates after maxDate will be grayed out. Default = undefined\n  maxDate={'2012-05-30'}\n  // Max amount of months allowed to scroll to the past. Default = 50\n  pastScrollRange={50}\n  // Max amount of months allowed to scroll to the future. Default = 50\n  futureScrollRange={50}\n  // Specify how each item should be rendered in agenda\n  renderItem={(item, firstItemInDay) =\u003e {return (\u003cView /\u003e);}}\n  // Specify how each date should be rendered. day can be undefined if the item is not first in that day\n  renderDay={(day, item) =\u003e {return (\u003cView /\u003e);}}\n  // Specify how empty date content with no items should be rendered\n  renderEmptyDate={() =\u003e {return (\u003cView /\u003e);}}\n  // Specify how agenda knob should look like\n  renderKnob={() =\u003e {return (\u003cView /\u003e);}}\n  // Specify what should be rendered instead of ActivityIndicator\n  renderEmptyData = {() =\u003e {return (\u003cView /\u003e);}}\n  // Specify your item comparison function for increased performance\n  rowHasChanged={(r1, r2) =\u003e {return r1.text !== r2.text}}\n  // Hide knob button. Default = false\n  hideKnob={true}\n  // When `true` and `hideKnob` prop is `false`, the knob will always be visible and the user will be able to drag the knob up and close the calendar. Default = false\n  showClosingKnob={false}\n  // By default, agenda dates are marked if they have at least one item, but you can override this if needed\n  markedDates={{\n    '2012-05-16': {selected: true, marked: true},\n    '2012-05-17': {marked: true},\n    '2012-05-18': {disabled: true}\n  }}\n  // If disabledByDefault={true} dates flagged as not disabled will be enabled. Default = false\n  disabledByDefault={true}\n  // If provided, a standard RefreshControl will be added for \"Pull to Refresh\" functionality. Make sure to also set the refreshing prop correctly\n  onRefresh={() =\u003e console.log('refreshing...')}\n  // Set this true while waiting for new data from a refresh\n  refreshing={false}\n  // Add a custom RefreshControl component, used to provide pull-to-refresh functionality for the ScrollView\n  refreshControl={null}\n  // Agenda theme\n  theme={{\n    ...calendarTheme,\n    agendaDayTextColor: 'yellow',\n    agendaDayNumColor: 'green',\n    agendaTodayColor: 'red',\n    agendaKnobColor: 'blue'\n  }}\n  // Agenda container style\n  style={{}}\n/\u003e\n```\n\n## Authors\n\n* [Tautvilas Mecinskas](https://github.com/tautvilas/) - Initial code - [@tautvilas](https://twitter.com/Tautvilas)\n* Katrin Zotchev - Initial design - [@katrin_zot](https://twitter.com/katrin_zot)\n\nSee also the list of [contributors](https://github.com/wix/react-native-calendar-components/contributors) who participated in this project.\n\n## Contributing\n\nPull requests are most welcome!\nPlease `npm run test` and `npm run lint` before push.\nDon't forget to add a **title** and a **description** that explain the issue you're trying to solve and your suggested solution. \nScreenshots and gifs are VERY helpful.\nPlease do NOT format the files as we are trying to keep a unified syntax and the reviewing process fast and simple.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbigbinary%2Freact-native-calendars","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbigbinary%2Freact-native-calendars","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbigbinary%2Freact-native-calendars/lists"}