0

在创建帖子时,它是星期五 30 日。出于某种原因,我的日历将这一天显示为星期六:

在此处输入图像描述

我的日历代码:

          <Calendar
            style={{width: Dimensions.get('screen').width - 10}}
            theme={{
              selectedDayBackgroundColor: '#00adf5',
              selectedDayTextColor: '#ffffff',
              dotColor: '#00adf5',
            }}
            onDayPress={this.onDaySelect}
            markedDates={this.state.markedDates}
            markingType="single"
            minDate={minDate}
            maxDate={maxDate}
            disableAllTouchEventsForDisabledDays={true}
          />
4

1 回答 1

1

转到此文件位置

react-native-calenders -> src -> calendar -> header -> index.js

并改变了

let weekDaysNames = weekDayNames(this.props.firstDay);
to 
let weekDaysNames = weekDayNames(6);

我遇到了同样的问题

我已经从上述解决方案中解决了这个问题

于 2020-11-10T05:13:28.607 回答