how to display a calender in react native

Solutions on MaxInterview for how to display a calender in react native by the best coders in the world

showing results for - "how to display a calender in react native"
Mathew
03 Sep 2018
1<Calendar
2  markingType={'custom'}
3  markedDates={{
4    '2018-03-28': {
5      customStyles: {
6        container: {
7          backgroundColor: 'green'
8        },
9        text: {
10          color: 'black',
11          fontWeight: 'bold'
12        }
13      }
14    },
15    '2018-03-29': {
16      customStyles: {
17        container: {
18          backgroundColor: 'white',
19          elevation: 2
20        },
21        text: {
22          color: 'blue'
23        }
24      }
25    }
26  }}
27/>