react-native-ios
には、react-native-datepicker
を使用してカレンダーから日付を選択しています。私は私の方法レンダリングで次のコードを追加してい Date Picker in react-native-ios反応のネイティブカレンダーピッカーをiosのダイアログに表示
:
<View style={styles.buttonContainer}>
<TouchableOpacity
style={[styles.bubble, styles.button]}
onPress={() => this.openCalender()}>
<DatePicker
style={{width: 150}}
date={this.state.date}
mode="date"
placeholder="Date"
format="YYYY-MM-DD"
minDate="2015-01-01"
maxDate="2025-12-01"
confirmBtnText="Confirm"
cancelBtnText="Cancel"
iconSource={require('./assets/cal.png')}
onDateChange={(date) => {this.setState({date: date});}}
/>
</TouchableOpacity>
</View>
を私はダイアログでこの日付ピッカーを追加したいこのため 、私は次のリンクを使用しています。 react-native-ios
にそれを実装する方法は何でしょうか。
NavBarの右ボタンをクリックして、日付ピッカーを配置します。
https://github.com/pandiaraj44/react-native-datepicker-dialogを使用して、Android and iosの日付選択ツールを簡単に実装してみてください。 – scsiva1991