TEAM LICENSES: Save money and learn new skills through a Hacking with Swift+ team license >>

I dont want to use Form's for input data but I want to have the same style of NavigationLink(same look)

Forums > 100 Days of SwiftUI

Can someone help me how to do the NavigationLink to look the same as it would look like in the Form

2      

Use List instead, if you don't want Form.

2      

@ygeras I want to have a screen where part of the screen is meant for input data and the other part is a picture with some general data(ordinary Text) on the side. I want to make the entire screen scrollable so I tried to put the form under the ScrollView but then the form disapears. Now I try to get rid of the form but I want the NavigationLink look the same..

2      

Will it be close enough to look like nav link in form?

struct ContentView: View {
    var body: some View {
        NavigationStack {
            ZStack {
                Color(uiColor: .systemGroupedBackground)
                    .ignoresSafeArea()
                NavigationLink(destination: SecondView()) {
                    LabeledContent("Navigate") {
                        Image(systemName: "chevron.right")
                            .foregroundColor(Color(uiColor: .tertiaryLabel))
                            .imageScale(.small)
                            .fontWeight(.bold)

                    }
                    .padding(.vertical, 12)
                    .padding(.horizontal, 12)
                    .foregroundColor(.black)
                }
                .background(
                    RoundedRectangle(cornerRadius: 10)
                        .foregroundColor(.white)
                )
                .padding()
            }
        }
    }
}

struct SecondView: View {
    var body: some View {
        Text("Second View")
    }
}

2      

@This is really nice looking! Really good work. Thank you very much!

2      

Hacking with Swift is sponsored by String Catalog.

SPONSORED Get accurate app localizations in minutes using AI. Choose your languages & receive translations for 40+ markets!

Localize My App

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.