'Wobbling macOS SwiftUI Window size

I am using Text in macOS SwiftUI, but having it alone in body, it makes the window be smaller than it should be and it wobbles between the size that it must be or less! Here is the code and the way to prevent it, but this 2 ways are limiting my design, my text String could be a long one I cannot use .fixedSize() or .frame(width: 200, height: 50). So what I can do? I want Text view without limitation of frame and also without the wobbling window size issue.

struct ContentView: View {
    var body: some View {
        
        Text("Hello, world!")
             // This 2 ways limit my design:
            .fixedSize()
            //Or:
            .frame(width: 200, height: 50)
        
        Circle()
            .frame(width: 200, height: 200)
    }
}


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source