'Navigation From Right To Left In SwiftUI

As written in the title i am trying to find a way to change the navigation style from left-to-right to a right-to-left Arabic style. This is a simple NavigationView code I made:

import SwiftUI

struct HomeView: View {
    var body: some View {
        NavigationView {
            List {
                NavigationLink(destination: Text("Destination")) {
                    Text("Go To Destination")
                }
            }
            .navigationTitle("Text")
        }
    }
}

struct HomeView_Previews: PreviewProvider {
    static var previews: some View {
        HomeView()
    }
}


Sources

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

Source: Stack Overflow

Solution Source