fateh999 / react-native-paper-dropdown

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

dropdown icon is not visible in latest version of paper [fix included] #91

Open rodrigoAbril opened 1 year ago

rodrigoAbril commented 1 year ago

in line 164 of DropDown.tsx

to fix change attribute name to icon as seen in https://callstack.github.io/react-native-paper/text-input-icon.html

otskarli commented 1 year ago

Looking at the source code, there is currently easy workaround to get the icon.

<DropDown ... inputProps={{ right: <TextInput.Icon icon={showDropDown ? "menu-up" : "menu-down"} /> }} />

And Your second link is not working.

RiedelNicolas commented 11 months ago

Thanks a lot @otskarli !