From 3ab8cec7a42e9e8e232054849bc8016d43c418ad Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Mon, 13 May 2024 11:26:12 -0500 Subject: [PATCH] added more documentation Signed-off-by: Matt Bruce --- VDS/Components/TextFields/EntryFieldBase.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VDS/Components/TextFields/EntryFieldBase.swift b/VDS/Components/TextFields/EntryFieldBase.swift index 6dca8a0e..86cc6a48 100644 --- a/VDS/Components/TextFields/EntryFieldBase.swift +++ b/VDS/Components/TextFields/EntryFieldBase.swift @@ -49,6 +49,8 @@ open class EntryFieldBase: Control, Changeable, FormFieldInternalValidatable { } }() + /// This is the veritcal stack view that has 2 rows, the containerView and the return view + /// of the getBottomContainer() method, by default returns the bottomContainerStackView. internal let secondaryStackView = UIStackView().with { $0.translatesAutoresizingMaskIntoConstraints = false $0.axis = .vertical @@ -56,6 +58,7 @@ open class EntryFieldBase: Control, Changeable, FormFieldInternalValidatable { } /// This is the view that will be wrapped with the border for userInteraction. + /// The only subview of this view is the fieldStackView internal var containerView: UIView = { return UIView().with { $0.translatesAutoresizingMaskIntoConstraints = false