我是React Native的新手,只是想在触摸TextInput时让DatePickerIOS组件从屏幕底部向上滑动。
有人能告诉我正确的方向吗?或者给我一个简单的例子?
下面是我的组件。这很简单。我试图在用户触摸TextInput后打开键盘或DatePickerIOS。
import React, {
AppRegistry,
Component,
StyleSheet,
Text,
TextInput,
View,
DatePickerIOS
} from 'react-native';
class AddChildVisit extends Component {
render() {
return (
<View>
<Text>Visit Date</Text>
<TextInput
style={{height: 40, width: 300, padding: 4, borderColor: 'gray', borderWidth: 1}}
keyboardType= 'numeric'
/>
<DatePickerIOS
date={new Date()}
mode="date"
/>
</View>
);
}
}
module.exports = AddChildVisit;
我正在使用DatePickerIOS,下面是我应该如何做到的示例:
import React, {
AppRegistry,
Component,
StyleSheet,
Text,
TouchableOpacity,
TextInput,
View,
DatePickerIOS
} from "react-native";
var moment = require('moment');
class AddChildVisit extends Component {
constructor(props) {
super(props);
this.state = {
date: new Date(),
showDatePicker: false
}
}
render() {
var showDatePicker = this.state.showDatePicker ?
<DatePickerIOS
style={{ height: 150 }}
date={this.state.date} onDateChange={(date)=>this.setState({date})}
mode="date"/> : <View />
return (
<View>
<Text>Visit Date</Text>
<TouchableOpacity style={{height: 40, width: 300, padding: 4, borderColor: 'gray', borderWidth: 1}}
onPress={() => this.setState({showDatePicker: !this.state.showDatePicker})}>
<Text>{moment(this.state.date).format('DD/MM/YYYY')}</Text>
</TouchableOpacity>
{showDatePicker}
</View>
);
}
}
module.exports = AddChildVisit;
当您按下TouchableOpacity时,日期选择器将显示,因为您触发标志来显示它,若您再次按下它,它将关闭。我也使用moment来打印日期,因为我遇到了无法将对象放入文本组件等错误。对于这个例子,你需要安装moment,你可以这样做:npm install moment --save
,我已经在上面的代码示例中使用过了,你可以看到var moment = require('moment')
,在文本{moment(this.state.date).format('DD/MM/YYYY')}
中再次打印日期。如果你不想安装/使用它,只需从我的例子中删除带有moment的行即可,但那时你的日期不会打印出来。我真的不确定如何用TextInput调用日期选择器,因为它必须触发键盘,而当我有日期选择器时,我并不真的需要键盘。我希望它能有所帮助:)
另一种方法是使用包react native datepicker,它适用于安卓/iOS两个平台https://www.npmjs.com/package/react-native-datepicker