作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
可以在 react-day-picker 中禁用日期,但我找不到在 react-native-datetime-picker 中禁用特定日期的方法。可以禁用一系列日期,但不能禁用特定日期。
是否可以在 react-native-datetime-picker 中禁用某些日期?
最佳答案
您不能为此使用 react-native-date-picker 。但是有可用于此的库。它是 react-native-calendars
.以下代码段将为您提供如何做到这一点的想法。
const vacation = {key:'vacation', color: 'red', selectedDotColor: 'blue'};
const massage = {key:'massage', color: 'blue', selectedDotColor: 'blue'};
const workout = {key:'workout', color: 'green'};
<Calendar
markedDates={{
'2017-10-25': {dots: [vacation, massage, workout], selected: true, selectedColor: 'red'},
'2017-10-26': {dots: [massage, workout], disabled: true}
}}
markingType={'multi-dot'}
/>
关于react-native - 如何在 react-native-datetime-picker 中禁用特定日期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54330708/
我是一名优秀的程序员,十分优秀!