I have a similar problem to this: SwiftUI HStack with wrap and dynamic height
But I want this tags to aligned in center instead of left aligned. I tried but can't make it work.
I have a similar problem to this: SwiftUI HStack with wrap and dynamic height
But I want this tags to aligned in center instead of left aligned. I tried but can't make it work.
You can try VStack with alignment.
VStack(alignment: .center) {
// your views
}