-
Notifications
You must be signed in to change notification settings - Fork 24
DeeplinkComponent
ohitsdaniel edited this page Apr 29, 2021
·
3 revisions
First class representation of a URL path component
public struct DeeplinkComponent: Hashable
// scheme://name?flag&value=123
DeeplinkComponent(
name: "name",
arguments: [
"flag": .flag,
"value": "123"
]
)
Hashable
Initialise a deeplink component from a URL
public init?(url: URL)
// scheme://name?flag&value=123
DeeplinkComponent(
name: "name",
arguments: [
"flag": .flag,
"value": "123"
]
)
public init(name: String, arguments: [String: Argument]? = nil)
public let name: String
public let arguments: [String: Argument]?
Generated at 2021-04-29T07:59:04+0000 using swift-doc 1.0.0-beta.6.
Types
- AnyPathBuilder
- AnyScreen
- Deeplink
- DeeplinkComponent
- DeeplinkComponent.Argument
- DeeplinkHandler
- DeeplinkParser
- EitherAB
- EitherABC
- EitherABCD
- EitherABCDE
- EitherABCDEF
- EitherABCDEFG
- EitherABCDEFGH
- EitherABCDEFGHI
- EitherABCDEFGHIJ
- IdentifiedScreen
- NavigationNode
- NavigationTreeBuilder
- Navigator
- Navigator.Datasource
- Navigator.DidAppearInvocation
- Navigator.DismissInvocation
- Navigator.GoBackToInvocation
- Navigator.GoToInvocation
- Navigator.GoToPathInvocation
- Navigator.NavigationIdentifier
- Navigator.ReplaceContentInvocation
- Navigator.ReplacePathInvocation
- Navigator.ReplaceScreenInvocation
- NavigatorKey
- OnDismissView
- PathBuilders
- PathBuilders.EmptyBuilder
- PathBuilders.WildcardView
- PathComponentUpdate
- PathUpdate
- Root
- ScreenPresentationStyle
- TreatSheetDismissAsAppearInPresenterKey
- _PathBuilder