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 found this issue and also solved it here is the solution,
In DropDown.swift file
DropDown.swift
Add this code in this function.
func computeLayoutForTopDisplay(window: UIWindow) -> ComputeLayoutTuple
if #available(iOS 11.0, *) { windowYAix = window.safeAreaInsets.top } else { // Fallback on earlier versions } let windowY = windowYAix + DPDConstant.UI.HeightPadding
And After that look like this
fileprivate func computeLayoutForTopDisplay(window: UIWindow) -> ComputeLayoutTuple { var offscreenHeight: CGFloat = 0 let anchorViewX = anchorView?.plainView.windowFrame?.minX ?? 0 let anchorViewMaxY = anchorView?.plainView.windowFrame?.maxY ?? 0 let x = anchorViewX + topOffset.x var y = (anchorViewMaxY + topOffset.y) - tableHeight var windowYAix = window.bounds.minY if #available(iOS 11.0, *) { windowYAix = window.safeAreaInsets.top } else { // Fallback on earlier versions } let windowY = windowYAix + DPDConstant.UI.HeightPadding if y < windowY { offscreenHeight = abs(y - windowY) y = windowY } let width = self.width ?? (anchorView?.plainView.bounds.width ?? fittingWidth()) - topOffset.x return (x, y, width, offscreenHeight) }
The text was updated successfully, but these errors were encountered:
Please update this in your project, so help others.
Sorry, something went wrong.
No branches or pull requests
I found this issue and also solved it here is the solution,
In
DropDown.swift
fileAdd this code in this function.
func computeLayoutForTopDisplay(window: UIWindow) -> ComputeLayoutTuple
And After that look like this
The text was updated successfully, but these errors were encountered: