-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
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
How can I customize width for malert? #11
Comments
Hi @anfahamid sorry my delay, There is any support to customize malert width. It is a good thing to thinking about. |
Any update? |
same question |
Hello guys, thank you for using Malert. This issue has been a long time, so sorry for not supporting you correctly. Malert does not have this support to set Alert's width, because Malert has an adaptive and flexible layout. I was thinking here and we can provide a landscape and a portrait margin to be set. Does this approach help you? |
Just had the same issue with landscape mode so I did a small adjustment in extension UIWindow {
static var isLandscape: Bool {
if #available(iOS 13.0, *) {
return UIApplication.shared.windows
.first?
.windowScene?
.interfaceOrientation
.isLandscape ?? false
} else {
return UIApplication.shared.statusBarOrientation.isLandscape
}
}
}
class MalertPresentTransitioning: BaseTransitioning, UIViewControllerAnimatedTransitioning {
let containerHeight: CGFloat = 300
var originFrame: CGRect {
switch UIDevice.current.userInterfaceIdiom {
case .phone:
if UIWindow.isLandscape {
return CGRect(
x: UIScreen.main.bounds.minX,
y: UIScreen.main.bounds.midY - containerHeight / 2,
width: UIScreen.main.bounds.width,
height: containerHeight)
} else {
return UIScreen.main.bounds
}
case .pad:
return CGRect(
x: UIScreen.main.bounds.minX,
y: UIScreen.main.bounds.midY - containerHeight / 2,
width: UIScreen.main.bounds.width,
height: containerHeight)
default:
return UIScreen.main.bounds
}
}
} |
No description provided.
The text was updated successfully, but these errors were encountered: