Bug in VStack alignment in button in iOS15.

When using VStack in a button in iOS15, alignment is buggy.

struct ContentView: View {
  var body: some View {
    Button(action: {}, label: {
      VStack(alignment: .leading, spacing: 10) {
        Text("こんにちはこんにちはこんにちは")
        Text("これはテストです。これはテストです。これはテストです。これはテストです。これはテストです。これはテストです。これはテストです。これはテストです。これはテストです。")
      }
    })
  }
}
iOS14iOS15
Answered by workingdogintokyo in 693397022

add .multilineTextAlignment(.leading) to your VStack or Text(...)

Accepted Answer

add .multilineTextAlignment(.leading) to your VStack or Text(...)

Bug in VStack alignment in button in iOS15.
 
 
Q