feat: Adds form style to styleguide.

This commit is contained in:
2024-06-14 11:12:10 -04:00
parent eb0253077b
commit 50e80d39eb
6 changed files with 24 additions and 23 deletions

View File

@@ -0,0 +1,15 @@
import SwiftUI
// Note: This does not work as an actual form style, as it adds toolbars, etc. multiple times, so just using as a modifier.
extension View {
public func applyFormStyle() -> some View {
self
.labelsHidden()
.textLabelStyle(.boldSecondary)
.textFieldStyle(.roundedBorder)
#if os(macOS)
.padding()
#endif
}
}