I've been struggling with this problem during this week, I've trying to find out how to achieve a resource view for React Native, I tried the wix calendar one but I can't get this view so far. Does anyone can help me or have any other library I can give it a try? also tried with React Native Calendar Event library.
this is my code so far:
<View style={styles.screen}>
<CalendarProvider
style={{ marginBottom: 40 }}
date={currentDate}
onDateChanged={() => console.log('onDateChanged')}
onMonthChange={() => console.log('onMonthChanged')}
showTodayButton={true}
disabledOpacity={0.6}
>
<ExpandableCalendar
showWeekNumbers={false}
showScrollIndicator={false}
showsHorizontalScrollIndicator={false}
showsVerticalScrollIndicator={false}
showSixWeeks={false}
firstDay={1}
markedDates={marked}
/>
<TimelineList
key={1}
events={eventsByDate}
timelineProps={timelineProps}
showNowIndicator
scrollToFirst
initialTime={INITIAL_TIME}
/>
</CalendarProvider>
</View>
this is what I'm looking for