react-native-calendars icon indicating copy to clipboard operation
react-native-calendars copied to clipboard

fix: multi-dot markedDates containerOpacity

Open vkupar opened this issue 2 years ago • 0 comments

So far it was impossible to set a day container opacity to multi-dot calendar

Now this will work, after providing - containerOpacity:

<Calendar
  markingType={'multi-dot'}
  markedDates={{
    '2023-12-25': {dots: [{key: 'vacation', color: 'red', selectedDotColor: 'blue'}], selectedColor: 'red', containerOpacity: 0.3},
  }}
/>;

vkupar avatar Dec 29 '23 16:12 vkupar