We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug I use the props : pickerProps={{numberOfLines: 10}}
pickerProps={{numberOfLines: 10}}
But my items are still on 1 line with ellipsis.
To Reproduce Steps to reproduce the behavior:
<RNPickerSelect pickerProps={{numberOfLines: 10}} doneText="Valider" placeholder={{}} items={lstTreeCondPart.map(c => { var info = { label: c.text, value: c.idTreeCondPart, key: c.idTreeCondPart, }; return info; })} value={selectedValue ? selectedValue : defaultValue} onValueChange={itemValue => { if (Platform.OS === 'ios') { setSelectedValue(itemValue); } else { setSelectedValue(itemValue); onValueChange({ idTreeCondPart: itemValue, idGroupCondPart, }); } }} onClose={() => { onValueChange({ idTreeCondPart: selectedValue, idGroupCondPart, }); }} style={{ inputIOS: { ...form.select, }, inputAndroid: { ...form.select, }, iconContainer: { ...form.selectIconContainer, }, }} Icon={() => { return ( <Icon style={{ transform: [{rotate: '270deg'}], }} name="bold-left" size={20} color={SkinColors.typoGrey} /> ); }} />
Expected behavior Items should be on multiple lines
Screenshots
Additional details
Reproduction and/or code sample Code sample is above, i can't give more and its not needed for this issue.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
I use the props :
pickerProps={{numberOfLines: 10}}
But my items are still on 1 line with ellipsis.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Items should be on multiple lines
Screenshots
Additional details
Reproduction and/or code sample
Code sample is above, i can't give more and its not needed for this issue.
The text was updated successfully, but these errors were encountered: