Giter Club home page Giter Club logo

Comments (2)

frzi avatar frzi commented on May 29, 2024 2

Hi, yes, sorry, I understand the library can be a bit alien and daunting at first.

First you wrap your app in a Router:

@main
struct MyApp: App {
	var body: some Scene {
		WindowGroup {
			Router {
				ContentView()
			}
		}
	}
}

The Router initializes all environment values and object etc. So using routes only works inside a Router. (You only need one Router in your entire app.)

Use Route to only render views when their path matches that of the global state. And use NavLink to make buttons that navigate to a path.

struct MyView: View {
	var body: some View {
		VStack {
			Route(path: "/hello-world") {
				// Will only be rendered if the path is "/hello-world".
				Text("Hello world!")
			}

			// A button that will navigate to "/hello-world"
			NavLink(to: "/hello-world") {
				Text("Go to Hello world")
			}
		}
	}
}

These are the basics. The README contains short descriptions of other views and features available in the library. The source code also contains documentation and is accessible in Xcode. (You may have to build the documentation via Product > Build Documentation to get access to the fully formatted docs)

Schermafbeelding 2021-11-05 om 12 07 04

I'm still trying to reserve time to work on tutorial(s) and example code 🙇

from swiftui-router.

AylaAsia-qinsunbo avatar AylaAsia-qinsunbo commented on May 29, 2024

Thank you

from swiftui-router.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.