Updates based on comments.

This commit is contained in:
David Langley
2022-10-13 11:12:14 +01:00
parent 4cbef854c9
commit afc79005c6
7 changed files with 28 additions and 12 deletions
@@ -43,9 +43,9 @@ class VectorHostingController: UIHostingController<AnyView> {
var enableNavigationBarScrollEdgeAppearance = false
/// When non-nil, the style will be applied to the status bar.
var statusBarStyle: UIStatusBarStyle?
/// Whether or not to publish when the height of the view changes
/// Whether or not to publish when the height of the view changes.
var publishHeightChanges: Bool = false
/// The publisher to subscribe to if `publishHeightChanges` is enabled.vi
/// The publisher to subscribe to if `publishHeightChanges` is enabled.
var heightPublisher: AnyPublisher<CGFloat, Never> {
return heightSubject.eraseToAnyPublisher()
}