Remove the arrow on option selected ? #29
Closed
npalbrecht
started this conversation in
General
Replies: 5 comments 2 replies
|
@npalbrecht Thanks for the feedback! We are glad you found it useful. There us a property called I have put together an example for you below. you can find it in the sandbox (When you select the third Dropdown) <DropdownSelect
label="Border has been removed"
placeholder="Select users"
options={[
{ label: 'John Doe', value: '12' },
{ label: 'James Bond', value: '13' },
]}
selectedValue={users}
onValueChange={(itemValue: any) => setUsers(itemValue)}
isSearchable
primaryColor={'purple'}
dropdownStyle={{
borderWidth: 0, // To remove border, set borderWidth to 0
}}
dropdownIcon={
users && (
<View style={styles.outerCircle}>
<View style={styles.innerCircle} />
</View>
)
}
dropdownIconStyle={users && { top: 20, right: 15 }}
/> |
0 replies
|
I see, that functionality is currently unavailable. But we can add that in the coming releases |
2 replies
|
Oh wow, that's perfect ! Thank you very much for your speed ! :) |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Uh oh!
There was an error while loading. Please reload this page.
Hello there,
Thanks for this amazing plug-in, it's very useful in my app and I'm enjoying playing with it ! 😄
I've a simple question : is there a way to remove the arrow when an option is selected ?
I can't find a way to do it and my aim is to have something like this when the option is selected :
Thanks guys !
All reactions