Post

Replies

Boosts

Views

Activity

How to move objects to the right side?
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!
3
0
703
Feb ’22
How to move title from left to right
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!
1
0
772
Feb ’22