We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8231535 + 538d66d commit faa8311Copy full SHA for faa8311
src/Date/DatePickerInputWithoutModal.tsx
@@ -58,7 +58,7 @@ function DatePickerInputWithoutModal(
58
onChangeText={onChangeText}
59
keyboardAppearance={theme.dark ? 'dark' : 'default'}
60
error={!!error}
61
- style={[styles.input, style]}
+ style={style}
62
/>
63
{inputButtons}
64
{!!error ? (
@@ -95,16 +95,14 @@ function getLabel({
95
96
const styles = StyleSheet.create({
97
root: {
98
- minWidth: 150,
+ flex: 1,
99
flexGrow: 1,
100
- justifyContent: 'center',
101
},
102
helperTextContainer: {
103
flexDirection: 'row',
104
105
helperText: {
106
flex: 1,
107
108
- input: {},
109
})
110
export default React.forwardRef(DatePickerInputWithoutModal)
0 commit comments