react-native-event-calendar
react-native-event-calendar copied to clipboard
multi day event
Hi Is it possible to set an event over multiple days? Thank you for any response!
Not possible yet, but won’t be that hard to implement. I’ll look into doing it soon, if nobody else gets around to it.
@apppro123, @joshjhargreaves what do you think? we can just cut events for days by saving the id event. {id: 1, start: '2018-11-01 01:30:00', end: '2018-11-02 02:20:00', title: 'Dr. Mariana Joseph'} break into two events: {id: 1, start: '2018-11-01 01:30:00', end: '2018-11-01 23:59:59', title: 'Dr. Mariana Joseph'} {id: 1, start: '2018-11-02 00:00:01', end: '2018-11-02 02:20:00', title: 'Dr. Mariana Joseph'} and all the rest of the logic for Packer can be reused.
Yes i have done it the same way.