react native中有关日期的组件DatePicker 示例
Posted 风的味道
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react native中有关日期的组件DatePicker 示例相关的知识,希望对你有一定的参考价值。
1.用node加载react-native-datepicker包
npm install react-native-datepicker
2.直接上代码
import React, { PureComponent } from ‘react‘;
import DatePicker from ‘react-native-datepicker‘;
class MyDatePicker extends PureComponent {
constructor(props) {
super(props);
this.state = {
data:new Date() //默认显示当前时间,如果为自定义则为(‘1991-1-1‘)
};
}
render() {
return (
<DatePicker
style={{ width: 50, justifyContent: ‘center‘, alignItems: ‘center‘ }}
date={this.state.data}
mode="date"
confirmBtnText="Confirm"
cancelBtnText="Cancel"
iconSource={require(‘./../image/calendar.png‘)} //自定义图标
customStyles={{
}}
hideText={true} //不显示日期文本
onDateChange={(datetime) => { this.props.storq.datetimeFun(datetime); }}
/>
);
}
}
export default MyDatePicker;
3.在另一个文件中引用
以上是关于react native中有关日期的组件DatePicker 示例的主要内容,如果未能解决你的问题,请参考以下文章
react-native DatePicker日期选择组件的实现
如何从 api 动态填充日历标记的日期 - React Native,redux
如何为 react-native 本机 ui 组件创建打字稿类型定义?