Wrap UI with Cloneable Renderer
When you start a workflow Cloneable will be able to take over rendering of the navigation stack to run the workflow
Overview
Wrapping the UI
Example implementation
// example usage
// This view should take up the entirety of the screen
struct YourApp: View {
@EnvironmentObject var cloneable: CloneablePlatform
var body: some View {
CloneableWorkflowWrapper(cloneablePlatform: cloneable) {
// The rest of your apps views and children views
MyAppViews()
}
}
}Last updated

