I am setting up the frame width and wondering if it is possible to have this display as a VStack
value:
title
instead of the default of a HStack when someone increases to a larger font size.
value: title
struct TextRowView: View {
let title: String
let value: String
let width: CGFloat
var body: some View {
LabeledContent {
Text(value)
.frame(width: width, alignment: .leading)
} label: {
Text(title)
.bold()
}
}
}