hossein-zare / react-native-dropdown-picker

A single / multiple, categorizable, customizable, localizable and searchable item picker (drop-down) component for react native which supports both Android & iOS.
https://hossein-zare.github.io/react-native-dropdown-picker-website/
MIT License
971 stars 295 forks source link

bordercolor when dropdown picker is open #580

Closed voulgarakis closed 1 year ago

voulgarakis commented 1 year ago

Hi I would like to know if it is possible to change the border color when the dropdown picker is open. by setting the style={{borderColor: '#4B4C5B'}} inside the DropDownPicker, it only changes the border when picker is closed.

298362460_2860159487619783_8003293422432854589_n 297758536_583755229961891_7726312948985885922_n

is there a way to make red (in my case) all the black lines including search bar border color?

voulgarakis commented 1 year ago

found it.

            style={{borderColor: 'red'}}
            searchContainerStyle={{
              borderBottomColor: 'red',
            }}
            searchTextInputStyle={{
              borderColor: 'red',
            }}
            dropDownContainerStyle={{borderColor: 'red'}}