You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Swift_Ark/InfoTextView.swift

16 lines
366 B

struct InfoRow: View {
var title: String
var value: String
var body: some View {
HStack {
VStack(alignment: .leading, spacing: 10) {
Text(title)
.fontWeight(.semibold)
.foregroundColor(.white)
Text(value)
}
Spacer()
}
}
}