fateh999 / react-native-paper-dropdown

Dropdown using react native paper TextInput and Menu
121 stars 72 forks source link

How can I tell the dropdown that it should render error styling? #93

Open JPStrydom opened 1 year ago

JPStrydom commented 1 year ago

Most of the react-native-paper input components take in an error prop which gives the input an error styling. Look at react-native-paper's TextInput component or react-native-paper-dates' DatePickerInput component.

Is there a way to achieve the same with react-native-paper-dropdown?

aubryll commented 9 months ago

@JPStrydom You can do it like this:

<DropDown
      ...
      inputProps={{
        error: true|false,
      }}/>