Reputation: 134
eg. when I click the date “ March, 7th ” ,the text “21 days” will appear on 21 days later date in calendar instead of "March,28th”.
Upvotes: 0
Views: 3904
Reputation: 738
You probably should create a new Day Component for what you need.
You can create a new Day Component using the API of the react native calendar, check the documentation for it here https://github.com/wix/react-native-calendars#overriding-day-component:
dayComponent={({date, state}) => { return (customDayComponent); }}
Or without day component you will have to get the left and top position of the needed day and place an overlaying View over the day (position: 'absolute', zIndex: 1).
Upvotes: 2