File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
WorkflowUI/Sources/Screen Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -101,15 +101,15 @@ extension Screen {
101
101
}
102
102
103
103
/// Wraps this screen in an `AdaptedEnvironmentScreen` with the given keypath and value.
104
- func adaptedEnvironment< Value> (
104
+ public func adaptedEnvironment< Value> (
105
105
keyPath: WritableKeyPath < ViewEnvironment , Value > ,
106
106
value: Value
107
107
) -> AdaptedEnvironmentScreen < Self > {
108
108
AdaptedEnvironmentScreen ( wrapping: self , keyPath: keyPath, value: value)
109
109
}
110
110
111
111
/// Wraps this screen in an `AdaptedEnvironmentScreen` with the given configuration block.
112
- func adaptedEnvironment(
112
+ public func adaptedEnvironment(
113
113
adapting: @escaping ( inout ViewEnvironment ) -> Void
114
114
) -> AdaptedEnvironmentScreen < Self > {
115
115
AdaptedEnvironmentScreen ( wrapping: self , adapting: adapting)
You can’t perform that action at this time.
0 commit comments