Skip to content

Instantly share code, notes, and snippets.

@AdiAyyakad
AdiAyyakad / Navigation.swift
Created March 3, 2022 18:16 — forked from ollieatkinson/Navigation.swift
NavigationRoute for Swift Composable Architecture
import ComposableArchitecture
import SwiftUI
public struct RouteIntent<R: NavigationRoute>: Hashable {
public enum Action: Hashable {
case navigateTo
case enterInto(EnterIntoContext = .default)
}