import React, { Component } from 'react'; import { StyleSheet, Text, View } from 'react-native'; //import CalendarPicker from 'react-native-calendar-picker'; import {Calendar, CalendarList} from 'react-native-calendars'; export default class Calendario extends Component { constructor(props) { super(props); this.state = { selectedStartDate: null, interpreter_id : this.props.route.params.Intereprete_id, }; this.onDayPress = this.onDayPress.bind(this); } onDayPress(date) { this.setState({ selectedStartDate: date, }); this.props.navigation.navigate('StateTime', {Appointment_Date: date, int_id : this.state.interpreter_id}); } render() { const { selectedStartDate } = this.state; const today = new Date(); const appointment = selectedStartDate ? selectedStartDate.toString() : ''; console.log(this.props.route.params) return ( {console.log('now these months are visible', months);}} minDate={today} onDayPress={this.onDayPress} /> ); } } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#FFFFFF', marginTop: 100, }, });