ComponentView

Protocol that SwiftUI views must conform to for rendering custom component UI

public protocol ComponentView: View {
    var staticComponentID: String { get set }
    var dynamicComponentID: String { get set }
    var component: DeployedWorkflow_components { get set}
    init(staticComponentID: String, dynamicComponentID: String, component: DeployedWorkflow_components)
}

Last updated