@@ -76,7 +76,7 @@ extension View {
76
76
77
77
/// The default `View.children` implementation. Haters may see this as a
78
78
/// composition lover re-implementing inheritance; I see it as innovation.
79
- func defaultChildren< Backend: AppBackend > (
79
+ public func defaultChildren< Backend: AppBackend > (
80
80
backend: Backend ,
81
81
snapshots: [ ViewGraphSnapshotter . NodeSnapshot ] ? ,
82
82
environment: EnvironmentValues
@@ -94,7 +94,7 @@ extension View {
94
94
/// The default `View.layoutableChildren` implementation. Haters may see
95
95
/// this as a composition lover re-implementing inheritance; I see it as
96
96
/// innovation.
97
- func defaultLayoutableChildren< Backend: AppBackend > (
97
+ public func defaultLayoutableChildren< Backend: AppBackend > (
98
98
backend: Backend ,
99
99
children: any ViewGraphNodeChildren
100
100
) -> [ LayoutSystem . LayoutableChild ] {
@@ -110,7 +110,7 @@ extension View {
110
110
111
111
/// The default `View.asWidget` implementation. Haters may see this as a
112
112
/// composition lover re-implementing inheritance; I see it as innovation.
113
- func defaultAsWidget< Backend: AppBackend > (
113
+ public func defaultAsWidget< Backend: AppBackend > (
114
114
_ children: any ViewGraphNodeChildren ,
115
115
backend: Backend
116
116
) -> Backend . Widget {
@@ -138,7 +138,7 @@ extension View {
138
138
139
139
/// The default `View.update` implementation. Haters may see this as a
140
140
/// composition lover re-implementing inheritance; I see it as innovation.
141
- func defaultUpdate< Backend: AppBackend > (
141
+ public func defaultUpdate< Backend: AppBackend > (
142
142
_ widget: Backend . Widget ,
143
143
children: any ViewGraphNodeChildren ,
144
144
proposedSize: SIMD2 < Int > ,
0 commit comments