Hey,
I would like to move the symbols and texts to the right side
That's the code:
NavigationView {
VStack {
List {
Label (
title: { Text("tv") }, icon: { Image(systemName: "tv") }
How do you do that?
Thanks in advance for the answers!
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
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!