-
Notifications
You must be signed in to change notification settings - Fork 199
Description
i have tried almost everything to get to see the end date manual input in my screen
Im not sure but if its a real issue it might be in the flexdirection
{mode === 'range' ? ( <View style={sharedStyles.flexDirectionRow}> <DatePickerInputWithoutModal inputMode="start" ref={startInput} mode="outlined" label={startLabel} value={state.startDate} onChange={(startDate) => onChange({ ...state, startDate })} returnKeyType={'next'} onSubmitEditing={onSubmitStartInput} validRange={validRange} locale={locale} withModal={false} autoComplete={'off'} inputEnabled={inputEnabled} withDateFormatInLabel={withDateFormatInLabel} placeholder={placeholder} /> <View style={styles.separator} /> <DatePickerInputWithoutModal inputMode="end" ref={endInput} mode="outlined" label={endLabel} value={state.endDate} onChange={(endDate) => onChange({ ...state, endDate })} onSubmitEditing={onSubmitEndInput} validRange={validRange} locale={locale} withModal={false} autoComplete="off" inputEnabled={inputEnabled} withDateFormatInLabel={withDateFormatInLabel} placeholder={placeholder} /> </View>