Post not yet marked as solved
Post marked as unsolved with 1 replies, 228 views
Hey,
Want to move the title from left to right
struct HomeView: View {
var body: some View {
NavigationView {
ZStack {
LinearGradient(gradient: /*@START_MENU_TOKEN@*/Gradient(colors: [Color.red, Color.blue])/*@END_MENU_TOKEN@*/, startPoint: /*@START_MENU_TOKEN@*/.leading/*@END_MENU_TOKEN@*/, endPoint: /*@START_MENU_TOKEN@*/.trailing/*@END_MENU_TOKEN@*/)
}
.navigationTitle("בית")
.edgesIgnoringSafeArea(.all)
.opacity(0.3)
}
}
}
Thanks in advance for the answers!