|
|
@ -177,6 +177,7 @@ private final class EnterPublicKeyVC : UIViewController {
|
|
|
|
weak var NewDMVC: NewDMVC!
|
|
|
|
weak var NewDMVC: NewDMVC!
|
|
|
|
private var isKeyboardShowing = false
|
|
|
|
private var isKeyboardShowing = false
|
|
|
|
private var bottomConstraint: NSLayoutConstraint!
|
|
|
|
private var bottomConstraint: NSLayoutConstraint!
|
|
|
|
|
|
|
|
private let bottomMargin: CGFloat = UIDevice.current.isIPad ? Values.largeSpacing : 0
|
|
|
|
|
|
|
|
|
|
|
|
// MARK: Components
|
|
|
|
// MARK: Components
|
|
|
|
private lazy var publicKeyTextView: TextView = {
|
|
|
|
private lazy var publicKeyTextView: TextView = {
|
|
|
@ -214,6 +215,11 @@ private final class EnterPublicKeyVC : UIViewController {
|
|
|
|
result.axis = .horizontal
|
|
|
|
result.axis = .horizontal
|
|
|
|
result.spacing = UIDevice.current.isIPad ? Values.iPadButtonSpacing : Values.mediumSpacing
|
|
|
|
result.spacing = UIDevice.current.isIPad ? Values.iPadButtonSpacing : Values.mediumSpacing
|
|
|
|
result.distribution = .fillEqually
|
|
|
|
result.distribution = .fillEqually
|
|
|
|
|
|
|
|
if (UIDevice.current.isIPad) {
|
|
|
|
|
|
|
|
let margin = (UIScreen.main.bounds.width - result.spacing - Values.iPadButtonWidth * 2) / 2
|
|
|
|
|
|
|
|
result.layoutMargins = UIEdgeInsets(top: 0, left: margin, bottom: 0, right: margin)
|
|
|
|
|
|
|
|
result.isLayoutMarginsRelativeArrangement = true
|
|
|
|
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
return result
|
|
|
|
}()
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
|
@ -251,7 +257,7 @@ private final class EnterPublicKeyVC : UIViewController {
|
|
|
|
mainStackView.pin(.leading, to: .leading, of: view)
|
|
|
|
mainStackView.pin(.leading, to: .leading, of: view)
|
|
|
|
mainStackView.pin(.top, to: .top, of: view)
|
|
|
|
mainStackView.pin(.top, to: .top, of: view)
|
|
|
|
view.pin(.trailing, to: .trailing, of: mainStackView)
|
|
|
|
view.pin(.trailing, to: .trailing, of: mainStackView)
|
|
|
|
bottomConstraint = view.pin(.bottom, to: .bottom, of: mainStackView)
|
|
|
|
bottomConstraint = view.pin(.bottom, to: .bottom, of: mainStackView, withInset: bottomMargin)
|
|
|
|
// Width constraint
|
|
|
|
// Width constraint
|
|
|
|
view.set(.width, to: UIScreen.main.bounds.width)
|
|
|
|
view.set(.width, to: UIScreen.main.bounds.width)
|
|
|
|
// Dismiss keyboard on tap
|
|
|
|
// Dismiss keyboard on tap
|
|
|
@ -292,7 +298,7 @@ private final class EnterPublicKeyVC : UIViewController {
|
|
|
|
guard !isKeyboardShowing else { return }
|
|
|
|
guard !isKeyboardShowing else { return }
|
|
|
|
isKeyboardShowing = true
|
|
|
|
isKeyboardShowing = true
|
|
|
|
guard let newHeight = (notification.userInfo?[UIResponder.keyboardFrameEndUserInfoKey] as? NSValue)?.cgRectValue.size.height else { return }
|
|
|
|
guard let newHeight = (notification.userInfo?[UIResponder.keyboardFrameEndUserInfoKey] as? NSValue)?.cgRectValue.size.height else { return }
|
|
|
|
bottomConstraint.constant = newHeight
|
|
|
|
bottomConstraint.constant = newHeight + bottomMargin
|
|
|
|
UIView.animate(withDuration: 0.25) {
|
|
|
|
UIView.animate(withDuration: 0.25) {
|
|
|
|
[ self.spacer1, self.separator, self.spacer2, self.userPublicKeyLabel, self.spacer3, self.buttonContainer ].forEach {
|
|
|
|
[ self.spacer1, self.separator, self.spacer2, self.userPublicKeyLabel, self.spacer3, self.buttonContainer ].forEach {
|
|
|
|
$0.alpha = 0
|
|
|
|
$0.alpha = 0
|
|
|
@ -305,7 +311,7 @@ private final class EnterPublicKeyVC : UIViewController {
|
|
|
|
@objc private func handleKeyboardWillHideNotification(_ notification: Notification) {
|
|
|
|
@objc private func handleKeyboardWillHideNotification(_ notification: Notification) {
|
|
|
|
guard isKeyboardShowing else { return }
|
|
|
|
guard isKeyboardShowing else { return }
|
|
|
|
isKeyboardShowing = false
|
|
|
|
isKeyboardShowing = false
|
|
|
|
bottomConstraint.constant = 0
|
|
|
|
bottomConstraint.constant = bottomMargin
|
|
|
|
UIView.animate(withDuration: 0.25) {
|
|
|
|
UIView.animate(withDuration: 0.25) {
|
|
|
|
[ self.spacer1, self.separator, self.spacer2, self.userPublicKeyLabel, self.spacer3, self.buttonContainer ].forEach {
|
|
|
|
[ self.spacer1, self.separator, self.spacer2, self.userPublicKeyLabel, self.spacer3, self.buttonContainer ].forEach {
|
|
|
|
$0.alpha = 1
|
|
|
|
$0.alpha = 1
|
|
|
|