I have some description text in a VStack, and I'd like to limit it to 3 lines. My understanding is that I modify Text()
with a .lineLimit(3)
modifier. However, when I do this, some of the descriptions get capped at 3 lines, while others get capped at 1. There doesn't seem to be any consistency as to where this happens.
I thought this could be the order in which I'm calling the modifier attributes, but switching the order of .font(.body)
and .lineLimit
doesn't change anything. I also tried removing the .padding()
, and that doesn't work either.
List(clubData) { club in
VStack(alignment: .leading) {
Text(club.name)
.font(.title)
.lineLimit(nil)
Text(club.subtitle)
.lineLimit(4)
.font(.body)
}
.padding()
}
Here's an image of what's happening: