File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
DataAndStorage/EnvironmentValues Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -84,13 +84,13 @@ extension EnvironmentValues {
84
84
set { _openURL = newValue }
85
85
}
86
86
87
- var _openURL : OpenURLAction {
87
+ public var _openURL : OpenURLAction {
88
88
get { self [ OpenURLActionKey . self] }
89
89
set { self [ OpenURLActionKey . self] = newValue }
90
90
}
91
91
// MARK: TODO -
92
92
93
- var _openSensitiveURL : OpenURLAction {
93
+ public var _openSensitiveURL : OpenURLAction {
94
94
get { self [ OpenSensitiveURLActionKey . self] }
95
95
set { self [ OpenSensitiveURLActionKey . self] = newValue }
96
96
}
Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ public struct Link<Label>: View where Label: View {
59
59
self . destination = LinkDestination ( configuration: configuration)
60
60
}
61
61
62
+ // TODO: Accessibility
62
63
public var body : some View {
63
64
Button {
64
65
destination. open ( )
You can’t perform that action at this time.
0 commit comments