EE
Size: a a a
EE
V
V
AO
V
return HStack {
ForEach(0..<columnNumber) { col in
AnyTextView()
}
}V
EE
LL
struct AnyTextView: View {
var body: some View {
let anyText = «0»// any huge text you want
return Text(anyText).font(font).frame(maxWidth: .infinity, alignment: .center)
}
private var font: Font = // anyfont
}V
V
LL
V
LL
V
AO
EE
AO
EE
V