fateh999 / react-native-paper-dropdown

Dropdown using react native paper TextInput and Menu
MIT License
130 stars 74 forks source link

How to customize the 'menu-up' and 'menu-down' icon font? #27

Closed busterbogheart closed 3 years ago

busterbogheart commented 3 years ago

Would this be done on the react-native-vector-icons side or is it possible to specify within the dropdown module?

mdfateh commented 3 years ago

You can update by passing right: <TextInput.Icon name={visible ? "menu-up" : "menu-down"} /> in inputProps to the component.

mdfateh commented 3 years ago

You can look up the props of react-native-paper TextInput for more options.