Fix borders

This commit is contained in:
Alfonso Grillo
2022-12-16 11:48:39 +01:00
parent 115e1444ea
commit c8490bf51f
4 changed files with 6 additions and 4 deletions
@@ -19,10 +19,12 @@ import SwiftUI
struct SeparatorLine: View {
@Environment(\.theme) private var theme: ThemeSwiftUI
var height: CGFloat = 1.0
var body: some View {
Rectangle()
.fill(theme.colors.quinaryContent)
.frame(maxWidth: .infinity)
.frame(height: 1.0)
.frame(height: height)
}
}