I have a basic List row I am building that has a large number on the leading edge followed by a title and subtitle next to it:
HStack {
Text("26")
.font(.title)
VStack(alignment: .leading) {
Text("Some title")
.font(.body)
.bold()
Text("Some subtitle")
.font(.caption)
}
}The trouble I'm running into is
GeometryReader { geometry in
HStack {
Text(weekNumberDateFormatter.string(from: self.note.identifier))
.font(.title)
.frame(width: geometry.size.height * 1.2)
VStack(alignment: .leading) {
Text(self.note.firstTextRowText())
.font(.body)
.bold()
Text(self.note.secondTextRowText())
.font(.caption)
}
}
}

Uh oh!
There was an error while loading. Please reload this page.