fixed responder issue
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
parent
83a0ff07b8
commit
3ec982d45c
@ -30,8 +30,14 @@ open class DatePicker: EntryFieldBase {
|
||||
//--------------------------------------------------
|
||||
// MARK: - Private Properties
|
||||
//--------------------------------------------------
|
||||
class Responder: UIView {
|
||||
open override var canBecomeFirstResponder: Bool {
|
||||
true
|
||||
}
|
||||
}
|
||||
|
||||
internal override var responder: UIResponder? { hiddenView }
|
||||
internal var hiddenView = UITextView().with { $0.width(0) }
|
||||
internal var hiddenView = Responder().with { $0.width(0) }
|
||||
internal var minWidthDefault = 186.0
|
||||
internal var bottomStackView: UIStackView = {
|
||||
return UIStackView().with {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user