Example of Calendar with Events Listed in React Native

React Native Calendar with Events

This is an Example of Calendar with Events Listed in React Native. To make a Calendar with Events in React Native we have a EventCalendar component provided by react-native-events-calendar.

In this example, you can add the events in a calendar using an event array. You just need to pass the date and time (or some other elements if you want) of the event as a JSON array and this will show you all the events on the calendar. You can use click on the calendar event to get further details of the event.

If you want to add the event in your device’s calendar also then you can also see Add Event in Device’s Calendar from React Native App for Android and iOS

How to use EventCalendar Component?

<EventCalendar
  eventTapped={this.eventClicked.bind(this)}
  // Function on event press
  events={this.state.events}
  // passing the Array of event
  width={width}
  // Container width
  size={60}
  // Number of date will render before and after initDate 
  // (default is 30 will render 30 day before initDate 
  // and 29 day after initDate)
  initDate={'2019-01-01'}
  // Show initial date (default is today)
  scrollToFirst
  // Scroll to first event of the day (default true)
/>

In this example of Calendar with Events, we will make a calendar with some event listed from a dummy event array. If you want you can use web-services to fetch the data as an array from the server and pass that array in events prop of  EventCalendar. So Let’s get started.

To Make a React Native App

Getting started with React Native will help you to know more about the way you can make a React Native project. We are going to use react native command line interface to make our React Native App.

If you have previously installed a global react-native-cli package, please remove it as it may cause unexpected issues:

npm uninstall -g react-native-cli @react-native-community/cli

Run the following commands to create a new React Native project

npx react-native init ProjectName

If you want to start a new project with a specific React Native version, you can use the --version argument:

npx react-native init ProjectName --version X.XX.X

Note If the above command is failing, you may have old version of react-native or react-native-cli installed globally on your pc. Try uninstalling the cli and run the cli using npx.

This will make a project structure with an index file named App.js in your project directory.

Installation of Dependency

To use EventCalendar component you need to install react-native-events-calendar package.

To install this Open the terminal and jump into your project

cd ProjectName

Run the following command

npm install react-native-events-calendar --save

This command will copy all the dependencies into your node_module directory. –save is optional, it is just to update the react-native-events-calendar dependency in your package.json file.

Code

Now Open App.js in any code editor and replace the code with the following code

App.js

// Example of Calendar with Events Listed in React Native
// https://aboutreact.com/example-of-calendar-with-events-listed-in-react-native/

// import React in our code
import React, {useState} from 'react';

// import all the components we are going to use
import {
  SafeAreaView,
  StyleSheet,
  View,
  Dimensions
} from 'react-native';

//import EventCalendar component
import EventCalendar from 'react-native-events-calendar';

//get the size of device
let {width} = Dimensions.get('window');

const App = () => {
  const [events, setEvents] = useState([
    {
      start: '2020-01-01 00:00:00',
      end: '2020-01-01 02:00:00',
      title: 'New Year Party',
      summary: 'xyz Location',
    },
    {
      start: '2020-01-01 01:00:00',
      end: '2020-01-01 02:00:00',
      title: 'New Year Wishes',
      summary: 'Call to every one',
    },
    {
      start: '2020-01-02 00:30:00',
      end: '2020-01-02 01:30:00',
      title: 'Parag Birthday Party',
      summary: 'Call him',
    },
    {
      start: '2020-01-03 01:30:00',
      end: '2020-01-03 02:20:00',
      title: 'My Birthday Party',
      summary: 'Lets Enjoy',
    },
    {
      start: '2020-02-04 04:10:00',
      end: '2020-02-04 04:40:00',
      title: 'Engg Expo 2020',
      summary: 'Expoo Vanue not confirm',
    },
  ]);

  const eventClicked = (event) => {
    //On Click of event showing alert from here
    alert(JSON.stringify(event));
  };

  return (
    <SafeAreaView style={styles.container}>
      <View style={styles.container}>
        <EventCalendar
          eventTapped={eventClicked}
          // Function on event press
          events={events}
          // Passing the Array of event
          width={width}
          // Container width
          size={60}
          // number of date will render before and after initDate
          // (default is 30 will render 30 day before initDate
          // and 29 day after initDate)
          initDate={'2020-01-01'}
          // Show initial date (default is today)
          scrollToFirst
          // Scroll to first event of the day (default true)
        />
      </View>
    </SafeAreaView>
  );
};
export default App;

const styles = StyleSheet.create({
  container: {
    flex: 1,
    alignItems: 'center',
    justifyContent: 'center',
  },
});

To Run the React Native App

Open the terminal again and jump into your project using.

cd ProjectName

1. Start Metro Bundler

First, you will need to start Metro, the JavaScript bundler that ships with React Native. To start Metro bundler run following command:

npx react-native start

Once you start Metro Bundler it will run forever on your terminal until you close it. Let Metro Bundler run in its own terminal. Open a new terminal and run the application.

2. Start React Native Application

To run the project on an Android Virtual Device or on real debugging device:

npx react-native run-android

or on the iOS Simulator by running (macOS only)

npx react-native run-ios

Output Screenshots

Output in Online Emulator

That was the Example of a Calendar with Events Listed in React Native. If you have any doubts or want to share something about the topic you can comment below or contact us here. There will be more posts coming soon. Stay tuned!

Hope you liked it. 🙂

12 thoughts on “Example of Calendar with Events Listed in React Native”

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.