nickrobinson352
nickrobinson352
the setTime API in TimePicker does not work for ios as there is a missing ref in TimePickerField.ios.js. ``` setTime(date){ this.refs.datePickerComponent.setDate(date); } return( ref='datePickerComponent' labelStyle={[formStyles.fieldText, this.props.labelStyle]} valueStyle = {[formStyles.fieldValue,this.props.valueStyle]} valueContainerStyle...
I have 2 DatePickerFields with mode as 'datetime' called 'Start Date/Time' and 'End Date/Time'. How do I create a validation such that when a user sets the 'Start Date/Time', the...