Swiftui button images clipping in landscape mode

How do I prevent clipping in landscape mode. Portrait mode it works.

Are you referring to the fact that the upper and lower button (I assume they are buttons) are being obscured from view?

Yes you are correct! How do I manage it with just swiftui?

One suggestion comes to mind is that you detect the orientation of the device and when that changes apply a scaleEffect to the Buttons as a Group.

Here is some code from StackOverflow that might give you an idea of how to go about it:

struct ContentView: View {
    @State var orientation: UIDeviceOrientation = UIDevice.current.orientation

    var body: some View {
        Text(orientation.isLandscape ? "Landscape" : "Portrait")
        .onAppear {
            NotificationCenter.default.addObserver(forName: UIDevice.orientationDidChangeNotification, object: nil, queue: OperationQueue.main) { _ in
                self.orientation = UIDevice.current.orientation
            }
        }
    }
}