-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from erikdrobne/feature/flow-actions
Feature/flow actions
- Loading branch information
Showing
17 changed files
with
208 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
...natorExample/SwiftUICoordinatorExample/Coordinators/CustomShapes/CustomShapesAction.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// | ||
// CustomShapesAction.swift | ||
// SwiftUICoordinatorExample | ||
// | ||
// Created by Erik Drobne on 23/07/2023. | ||
// | ||
|
||
import Foundation | ||
import SwiftUICoordinator | ||
|
||
enum CustomShapesAction: CoordinatorAction { | ||
case triangle | ||
case star | ||
case tower | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
...wiftUICoordinatorExample/SwiftUICoordinatorExample/Coordinators/Shapes/ShapesAction.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// | ||
// ShapesAction.swift | ||
// SwiftUICoordinatorExample | ||
// | ||
// Created by Erik Drobne on 23/07/2023. | ||
// | ||
|
||
import Foundation | ||
import SwiftUICoordinator | ||
|
||
enum ShapesAction: CoordinatorAction { | ||
case simpleShapes | ||
case customShapes | ||
case featuredShape(NavigationRoute) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
...natorExample/SwiftUICoordinatorExample/Coordinators/SimpleShapes/SimpleShapesAction.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// | ||
// SimpleShapesAction.swift | ||
// SwiftUICoordinatorExample | ||
// | ||
// Created by Erik Drobne on 23/07/2023. | ||
// | ||
|
||
import Foundation | ||
import SwiftUICoordinator | ||
|
||
enum SimpleShapesAction: CoordinatorAction { | ||
case rect | ||
case roundedRect | ||
case capsule | ||
case ellipse | ||
case circle | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.