study: 리네다기 | 달력

Lumpen·2023년 5월 29일
0

Study

목록 보기
92/92

react-native-calendars 를 사용한다

import {Calendar} from 'react-native-calendars/src';


 const markedDates = {
    '2021-05-17': {
      selected: true,
    },
    '2021-05-18': {
      marked: true,
    },
    '2021-05-19': {
      marked: true,
    },
  };

<Calendar
  style={styles.calendar}
  markedDates={markedDates}
  theme={{
    selectedDayBackgroundColor: '#009688',
    arrowColor: '#009688',
    dotColor: '#009688',
    todayTextColor: '#009688',
  }}
/>
profile
떠돌이 생활을 하는. 실업자는 아니지만, 부랑 생활을 하는

0개의 댓글