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/>