Add tag overview, improve assets
This commit is contained in:
19
CHDataManagement/Views/Generic/DetailTitle.swift
Normal file
19
CHDataManagement/Views/Generic/DetailTitle.swift
Normal file
@@ -0,0 +1,19 @@
|
||||
import SwiftUI
|
||||
|
||||
struct DetailTitle: View {
|
||||
|
||||
let title: String
|
||||
|
||||
let text: String
|
||||
|
||||
var body: some View {
|
||||
VStack(alignment: .leading) {
|
||||
Text(title)
|
||||
.font(.largeTitle)
|
||||
.bold()
|
||||
Text(text)
|
||||
.foregroundStyle(.secondary)
|
||||
.padding(.bottom, 30)
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user