add buttonTitle property in CustomizableButtonView

This commit is contained in:
Maxim Sorokin 2020-07-23 15:57:22 +03:00
parent 74d4be3635
commit 622c722a59
1 changed files with 6 additions and 0 deletions

View File

@ -88,6 +88,12 @@ open class CustomizableButtonView: UIView, InitializableView, ConfigurableView {
configureConstraints()
}
}
public var buttonTitle: String = "" {
willSet {
buttonTitle.text = newValue
}
}
public var hidesLabelWhenLoading = false