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
I want to add a separator line between the items. but a part of the line is hidden.
How can I get the separator line with full width of the dropdown?
The text was updated successfully, but these errors were encountered:
I able to add full width line with below code:
memberDropDown.customCellConfiguration = { (index: Index, item: String, cell: DropDownCell) -> Void in let dividerLine = UIView(frame: CGRect(x: 0, y: cell.frame.height - 1, width: self.view.frame.width - 20, height: 0.6)) dividerLine.backgroundColor = UIColor().darkBlueColor cell.addSubview(dividerLine) }
Sorry, something went wrong.
I able to add full width line with below code: memberDropDown.customCellConfiguration = { (index: Index, item: String, cell: DropDownCell) -> Void in let dividerLine = UIView(frame: CGRect(x: 0, y: cell.frame.height - 1, width: self.view.frame.width - 20, height: 0.6)) dividerLine.backgroundColor = UIColor().darkBlueColor cell.addSubview(dividerLine) }
@MrPrakashR
It's a good idea to fine-tune it with customCellConfiguration, but there's a very very good solution, so I'll do a PR.
If you write the code above, an issue will occur where two Separators are visible when you press DropDown twice.
two Separators
No branches or pull requests
I want to add a separator line between the items. but a part of the line is hidden.
How can I get the separator line with full width of the dropdown?
The text was updated successfully, but these errors were encountered: