Problem
I'm using SwiftUI's Link to open Safari from the application. But I have a long text for the link.
For now, the second line of the text always keeps aligned at the center.
What I want
I want to be able to use leading TextAlignment with it.
So I've tried to use multilineTextAlignment but didn't work.
Code
Link("Some long text even very looong even that long text here!", destination: URL(string: "https://www.apple.com/")!)
.multilineTextAlignment(.leading)
Need help.