Pop up title text size
Closed this issue · 1 comments
bermanapps commented
Is there any way to change the text size of the title of the pop up?
Thanks
mwfire commented
Hey @bermanapps,
The default dialog appearance can be customized as follows
let dialogAppearance = PopupDialogDefaultView.appearance()
dialogAppearance.backgroundColor = .white
dialogAppearance.titleFont = .boldSystemFont(ofSize: 14)
dialogAppearance.titleColor = UIColor(white: 0.4, alpha: 1)
dialogAppearance.titleTextAlignment = .center
dialogAppearance.messageFont = .systemFont(ofSize: 14)
dialogAppearance.messageColor = UIColor(white: 0.6, alpha: 1)
dialogAppearance.messageTextAlignment = .center
Hope that helps :)