最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當前位置: 首頁 - 科技 - 知識百科 - 正文

react-native DatePicker日期選擇組件的實現(xiàn)代碼

來源:懂視網(wǎng) 責編:小采 時間:2020-11-27 22:30:32
文檔

react-native DatePicker日期選擇組件的實現(xiàn)代碼

react-native DatePicker日期選擇組件的實現(xiàn)代碼:本教程的實現(xiàn)效果如下: 為了實現(xiàn)其淡入/淡出的覆蓋效果, 還有取消按鈕, 在此用了一個三方的組件, 大家可以先安裝一下: 三方組件的地址:https://github.com/eyaleizenberg/react-native-custom-action-sheet (可以看看,也可以直接按我
推薦度:
導(dǎo)讀react-native DatePicker日期選擇組件的實現(xiàn)代碼:本教程的實現(xiàn)效果如下: 為了實現(xiàn)其淡入/淡出的覆蓋效果, 還有取消按鈕, 在此用了一個三方的組件, 大家可以先安裝一下: 三方組件的地址:https://github.com/eyaleizenberg/react-native-custom-action-sheet (可以看看,也可以直接按我

本教程的實現(xiàn)效果如下:

為了實現(xiàn)其淡入/淡出的覆蓋效果, 還有取消按鈕, 在此用了一個三方的組件, 大家可以先安裝一下:

三方組件的地址:https://github.com/eyaleizenberg/react-native-custom-action-sheet (可以看看,也可以直接按我的步驟走)

1. 在terminal的該工程目錄下運行: npm install react-native-custom-action-sheet --save
2. 然后運行: npm start
3. 具體實現(xiàn)代碼如下:

import React, { Component } from 'react'; 
import { 
 AppRegistry, 
 StyleSheet, 
 Text, 
 View, 
 TouchableHighlight, 
 DatePickerIOS 
} from 'react-native'; 
 
//這是一個三方組件 github地址:https://github.com/eyaleizenberg/react-native-custom-action-sheet 
var CustomActionSheet = require('react-native-custom-action-sheet'); 
 
class Demo extends Component { 
 
 state = { 
 datePickerModalVisible: false, //選擇器顯隱標記 
 chooseDate: new Date() //選擇的日期 
 }; 
 
 _showDatePicker () { //切換顯隱標記 
 this.setState({datePickerModalVisible: !this.state.datePickerModalVisible}); 
 }; 
 
 _onDateChange (date) { //改變?nèi)掌趕tate 
 alert(date); //彈出提示框: 顯示你選擇日期 
 this.setState({ 
 chooseDate: date 
 }); 
 }; 
 
 render() { 
 
 let datePickerModal = ( //日期選擇器組件 (根據(jù)標記賦值為 選擇器 或 空) 
 this.state.datePickerModalVisible ? 
 <CustomActionSheet 
 modalVisible={this.state.datePickerModalVisible} //顯隱標記 
 onCancel={()=>this._showDatePicker()}> //點擊取消按鈕 觸發(fā)事件 
 <View style={styles.datePickerContainer}> 
 <DatePickerIOS 
 mode={"datetime"} //選擇器模式: 'date'(日期), 'time'(時間), 'datetime'(日期和時間) 
 minimumDate={new Date()} //最小時間 (這里設(shè)置的是當前的時間) 
 minuteInterval={30} //最小時間間隔 (這里設(shè)置的是30分鐘) 
 date={this.state.chooseDate} //默認的時間 
 onDateChange={this._onDateChange.bind(this)} //日期被修改時回調(diào)此函數(shù) 
 /> 
 </View> 
 </CustomActionSheet> : null 
 ); 
 
 return ( 
 <View style={styles.container}> 
 <TouchableHighlight 
 style={{backgroundColor:'cyan', padding:5}} 
 onPress={()=>this._showDatePicker()} //按鈕: 點擊觸發(fā)方法 
 underlayColor='gray' 
 > 
 <Text >show DatePick</Text> 
 </TouchableHighlight> 
 {datePickerModal} //日期選擇組件 
 </View> 
 ); 
 } 
} 
 
const styles = StyleSheet.create({ 
 container: { 
 flex: 1, 
 justifyContent: 'center', 
 alignItems: 'center', 
 backgroundColor: '#F5FCFF', 
 }, 
 datePickerContainer: { 
 flex: 1, 
 borderRadius: 5, 
 justifyContent: 'center', 
 alignItems: 'center', 
 backgroundColor: 'white', 
 marginBottom: 10, 
 }, 
}); 
 
AppRegistry.registerComponent('Demo', () => Demo); 

寫好了,在terminal中運行:react-native run-ios 就能看到效果了

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

react-native DatePicker日期選擇組件的實現(xiàn)代碼

react-native DatePicker日期選擇組件的實現(xiàn)代碼:本教程的實現(xiàn)效果如下: 為了實現(xiàn)其淡入/淡出的覆蓋效果, 還有取消按鈕, 在此用了一個三方的組件, 大家可以先安裝一下: 三方組件的地址:https://github.com/eyaleizenberg/react-native-custom-action-sheet (可以看看,也可以直接按我
推薦度:
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top