React-native-calendar首字母缩写每月显示日期

f4t66c6m  于 2023-01-05  发布在  React
关注(0)|答案(1)|浏览(139)

当我给予一个初始日期时,它被标记为日历上的所有月份,我如何避免这种情况?

<Agenda
          items={items}
          loadItemsForMonth={loadItems}
          current={'2022-10-28'}
          showClosingKnob={true}
          renderItem={renderItem}
          theme={{
            dotColor: "#22F460", 
          }}
          markingType={'custom'}
          markedDates={marked}
      />
t2a7ltrp

t2a7ltrp1#

使用CalendarProvider Package 议程并添加日期prop =“”

<CalendarProvider date="">
    <Agenda
      items={items}
      loadItemsForMonth={loadItems}
      ...
    />
</CalendarProvider>

相关问题