Remove the arrow on option selected ? #29
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 }}
/> |
Beta Was this translation helpful? Give feedback.
-
Thanks for you reply but I'm sorry for the missunderstood. |
Beta Was this translation helpful? Give feedback.
-
I see, that functionality is currently unavailable. But we can add that in the coming releases |
Beta Was this translation helpful? Give feedback.
-
Oh wow, that's perfect ! Thank you very much for your speed ! :) |
Beta Was this translation helpful? Give feedback.
-
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 !
Beta Was this translation helpful? Give feedback.
All reactions