fixed layout issue for entryfield base

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2024-04-11 15:55:31 -05:00
parent aaf2ddc08b
commit 41e6001746
2 changed files with 2 additions and 10 deletions

View File

@ -258,7 +258,7 @@ open class EntryFieldBase: Control, Changeable, FormFieldInternalValidatable {
//add bottomContainerStackView //add bottomContainerStackView
//this is the vertical stack that contains error text, helper text //this is the vertical stack that contains error text, helper text
bottomContainer.addSubview(bottomContainerStackView) bottomContainerView.addSubview(bottomContainerStackView)
bottomContainerStackView.pinToSuperView() bottomContainerStackView.pinToSuperView()
bottomContainerStackView.addArrangedSubview(errorLabel) bottomContainerStackView.addArrangedSubview(errorLabel)
bottomContainerStackView.addArrangedSubview(helperLabel) bottomContainerStackView.addArrangedSubview(helperLabel)

View File

@ -45,12 +45,6 @@ open class TextArea: EntryFieldBase {
} }
}() }()
internal var bottomView: UIView = {
return UIView().with {
$0.translatesAutoresizingMaskIntoConstraints = false
}
}()
internal var bottomStackView: UIStackView = { internal var bottomStackView: UIStackView = {
return UIStackView().with { return UIStackView().with {
$0.translatesAutoresizingMaskIntoConstraints = false $0.translatesAutoresizingMaskIntoConstraints = false
@ -238,11 +232,9 @@ open class TextArea: EntryFieldBase {
/// Container for the area showing helper text, error text, character count, maximum length value. /// Container for the area showing helper text, error text, character count, maximum length value.
open override func getBottomContainer() -> UIView { open override func getBottomContainer() -> UIView {
bottomView.addSubview(bottomStackView)
bottomStackView.pinToSuperView()
bottomStackView.addArrangedSubview(bottomContainerView) bottomStackView.addArrangedSubview(bottomContainerView)
bottomStackView.addArrangedSubview(characterCounterLabel) bottomStackView.addArrangedSubview(characterCounterLabel)
return bottomView return bottomStackView
} }
/// Used to update any Accessibility properties. /// Used to update any Accessibility properties.