react-native-element-dropdown icon indicating copy to clipboard operation
react-native-element-dropdown copied to clipboard

Multiselect default value not show and active

Open wolfxpertlab opened this issue 1 year ago • 0 comments

here is my code

<MultiSelect placeholder={categoryVal.length == 0 ? 'Select Category' : ${categoryVal.length} category selected} style={[styles.dropdown]} placeholderStyle={styles.placeholderStyle} iconStyle={styles.iconStyle} itemTextStyle={styles.itemText} data={category} maxHeight={150} activeColor='lightgray' labelField='label' valueField='value' visibleSelectedItem={false} value={categoryVal} onChange={(item: any) => { console.log('ceheck category val is', item); setcategoryVal(item) }}

                                        />

expectation : - default value not selected Simulator Screenshot - iPhone 15 - 2023-10-27 at 20 45 44

wolfxpertlab avatar Oct 27 '23 15:10 wolfxpertlab