Skip to main content

Getting Started

React Native Full Calendar (RNFC)

React Native Full Calendar (RNFC) is an intuitive and powerful calendar component library designed for React Native.




🚀 Features

  • Full Monthly Calendar: Displays events on a monthly basis.
  • Event Styling: Add multiple events per day with colors and styles.
  • Multi-Day Events: Visualize events that span across multiple days (e.g., team meetings, vacations).
  • Horizontal Scrolling (Currently Supported): The calendar currently supports horizontal scrolling only.

🔌 Installation

$ npm install react-native-full-calendars

OR

$ yarn add react-native-full-calendars

Dependencies

yarn add react-native-reanimated react-native-gesture-handler

Follow installation instructions for react-native-reanimated and react-native-gesture-handler


Basic Usage

import React, { useCallback, useState } from "react";
import { Dimensions, SafeAreaView } from "react-native";
import { GestureHandlerRootView } from "react-native-gesture-handler";
import Calendar from "react-native-full-calendars";
import { mockData } from "./test";

function App(): React.JSX.Element {
const [selectedDate, setSelectedDate] = useState<Date>(new Date());

const handlePress = useCallback((date: Date) => {
setSelectedDate(date);
}, []);

return (
<GestureHandlerRootView>
<SafeAreaView style={{ flex: 1 }}>
<Calendar
selectedDate={selectedDate}
onPageChange={(date) => {
console.log(date);
}}
data={mockData}
onDatePress={handlePress}
width={Dimensions.get("window").width - 20}
/>
</SafeAreaView>
</GestureHandlerRootView>
);
}

export default App;

Properties

PropertyTypeDefault valueDescription
dataCalendarData[]The data displayed in the calendar, including events
ref?Ref<CalendarController>nullA reference to the CalendarController instance, allowing external control or state inspection of the calendar.
selectedDate?DateThe currently selected date in the calendar.
currentDate?Datenew Date()The date considered as the current day in the calendar.
onDatePress?(Date, DateOptions) => voidCallback triggered when a date is pressed.
onPageChange?(Date) => voidCallback triggered when the calendar page changes.
buffer?number1Number of additional pages to load before and after the current page. If buffer is 2, the calendar loads 2 pages before and 2 pages after the current page.
maxDate?DateThe latest date the user can navigate to in the calendar.
minDate?DateThe earliest date the user can navigate to in the calendar.
maxVisibleCount?number4The maximum number of items visible within a single date component.
height?numberThe height of the calendar component.
width?numberThe width of the calendar component.
theme?ThemeTheme settings for customizing the calendar's appearance.
weekStartDay?WeekDayIndex0 (Sunday)The first day of the week.
renderDate?RenderDateFunction to render the content of a single day in the calendar.
renderDayLabel?RenderDayLabelFunction to render the labels for days in the calendar (e.g., Mon, Tue).
renderHeader?RenderHeaderFunction to render the header of the calendar.
renderMoreItemText?RenderMoreItemTextFunction to render text indicating the number of additional items beyond the visible count.