CXTDT-555854 - Dropdown Select - spacing issues

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2024-05-28 12:17:55 -05:00
parent bf21f45e9a
commit fab109b59b
2 changed files with 3 additions and 1 deletions

View File

@ -148,7 +148,7 @@ open class DropdownSelect: EntryFieldBase {
optionsPicker.isHidden = true
dropdownField.inputView = optionsPicker
dropdownField.inputAccessoryView = {
let accessView = UIView(frame: .init(origin: .zero, size: .init(width: UIScreen.main.bounds.width, height: 44)))
let accessView = UIView(frame: .init(origin: .zero, size: .init(width: UIScreen.main.bounds.width, height: containerSize.height)))
accessView.backgroundColor = .white
accessView.addBorder(side: .top, width: 1, color: .lightGray)
let done = UIButton(type: .system)
@ -168,6 +168,7 @@ open class DropdownSelect: EntryFieldBase {
self?.launchPicker()
}
.store(in: &subscribers)
containerView.height(44)
}
open override func getFieldContainer() -> UIView {

View File

@ -5,6 +5,7 @@
- CXTDT-560485 - Tilelet - Accessibility
- CXTDT-563189 - Dropdown Select Readonly Border color
- CXTDT-559318 - Calendar - Accessibility
- CXTDT-555854 - Dropdown Select - spacing issues
1.0.64
----------------