You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Initializes a structure that transforms a store into an observable view store in order to
126
-
/// compute accessibility rotor content from store state.
127
-
///
128
-
/// - Parameters:
129
-
/// - store: A store.
130
-
/// - isDuplicate: A function to determine when two `ViewState` values are equal. When values
131
-
/// are equal, repeat view computations are removed,
132
-
/// - content: A function that can generate content from a view store.
133
-
@available(
134
-
*,
135
-
deprecated,
136
-
message:
137
-
"""
138
-
For compiler performance, using "WithViewStore" from an accessibility rotor content builder is no longer supported. Extract this "WithViewStore" to the parent view, instead, or observe your view store from an "@ObservedObject" property.
139
-
140
-
See the documentation for "WithViewStore" (https://pointfreeco.github.io/swift-composable-architecture/main/documentation/composablearchitecture/viewstore#overview) for more information.
/// Initializes a structure that transforms a store into an observable view store in order to
164
-
/// compute accessibility rotor content from equatable store state.
165
-
///
166
-
/// - Parameters:
167
-
/// - store: A store of equatable state.
168
-
/// - content: A function that can generate content from a view store.
169
-
@available(
170
-
*,
171
-
deprecated,
172
-
message:
173
-
"""
174
-
For compiler performance, using "WithViewStore" from an accessibility rotor content builder is no longer supported. Extract this "WithViewStore" to the parent view, instead, or observe your view store from an "@ObservedObject" property.
175
-
176
-
See the documentation for "WithViewStore" (https://pointfreeco.github.io/swift-composable-architecture/main/documentation/composablearchitecture/viewstore#overview) for more information.
/// Initializes a structure that transforms a store into an observable view store in order to
193
-
/// compute accessibility rotor content from void store state.
194
-
///
195
-
/// - Parameters:
196
-
/// - store: A store of equatable state.
197
-
/// - content: A function that can generate content from a view store.
198
-
@available(
199
-
*,
200
-
deprecated,
201
-
message:
202
-
"""
203
-
For compiler performance, using "WithViewStore" from an accessibility rotor content builder is no longer supported. Extract this "WithViewStore" to the parent view, instead, or observe your view store from an "@ObservedObject" property.
204
-
205
-
See the documentation for "WithViewStore" (https://pointfreeco.github.io/swift-composable-architecture/main/documentation/composablearchitecture/viewstore#overview) for more information.
/// Initializes a structure that transforms a store into an observable view store in order to
224
-
/// compute commands from store state.
225
-
///
226
-
/// - Parameters:
227
-
/// - store: A store.
228
-
/// - isDuplicate: A function to determine when two `ViewState` values are equal. When values
229
-
/// are equal, repeat view computations are removed,
230
-
/// - content: A function that can generate content from a view store.
231
-
@available(
232
-
*,
233
-
deprecated,
234
-
message:
235
-
"""
236
-
For compiler performance, using "WithViewStore" from a command builder is no longer supported. Extract this "WithViewStore" to the parent view, instead, or observe your view store from an "@ObservedObject" property.
237
-
238
-
See the documentation for "WithViewStore" (https://pointfreeco.github.io/swift-composable-architecture/main/documentation/composablearchitecture/viewstore#overview) for more information.
/// Initializes a structure that transforms a store into an observable view store in order to
263
-
/// compute commands from equatable store state.
264
-
///
265
-
/// - Parameters:
266
-
/// - store: A store of equatable state.
267
-
/// - content: A function that can generate content from a view store.
268
-
@available(
269
-
*,
270
-
deprecated,
271
-
message:
272
-
"""
273
-
For compiler performance, using "WithViewStore" from a command builder is no longer supported. Extract this "WithViewStore" to the parent view, instead, or observe your view store from an "@ObservedObject" property.
274
-
275
-
See the documentation for "WithViewStore" (https://pointfreeco.github.io/swift-composable-architecture/main/documentation/composablearchitecture/viewstore#overview) for more information.
/// Initializes a structure that transforms a store into an observable view store in order to
293
-
/// compute commands from void store state.
294
-
///
295
-
/// - Parameters:
296
-
/// - store: A store of equatable state.
297
-
/// - content: A function that can generate content from a view store.
298
-
@available(
299
-
*,
300
-
deprecated,
301
-
message:
302
-
"""
303
-
For compiler performance, using "WithViewStore" from a command builder is no longer supported. Extract this "WithViewStore" to the parent view, instead, or observe your view store from an "@ObservedObject" property.
304
-
305
-
See the documentation for "WithViewStore" (https://pointfreeco.github.io/swift-composable-architecture/main/documentation/composablearchitecture/viewstore#overview) for more information.
/// Initializes a structure that transforms a store into an observable view store in order to
321
-
/// compute scenes from store state.
322
-
///
323
-
/// - Parameters:
324
-
/// - store: A store.
325
-
/// - isDuplicate: A function to determine when two `ViewState` values are equal. When values
326
-
/// are equal, repeat view computations are removed,
327
-
/// - content: A function that can generate content from a view store.
328
-
@available(
329
-
*,
330
-
deprecated,
331
-
message:
332
-
"""
333
-
For compiler performance, using "WithViewStore" from a scene builder is no longer supported. Extract this "WithViewStore" to the parent view, instead, or observe your view store from an "@ObservedObject" property.
334
-
335
-
See the documentation for "WithViewStore" (https://pointfreeco.github.io/swift-composable-architecture/main/documentation/composablearchitecture/viewstore#overview) for more information.
/// Initializes a structure that transforms a store into an observable view store in order to
358
-
/// compute scenes from equatable store state.
359
-
///
360
-
/// - Parameters:
361
-
/// - store: A store of equatable state.
362
-
/// - content: A function that can generate content from a view store.
363
-
@available(
364
-
*,
365
-
deprecated,
366
-
message:
367
-
"""
368
-
For compiler performance, using "WithViewStore" from a scene builder is no longer supported. Extract this "WithViewStore" to the parent view, instead, or observe your view store from an "@ObservedObject" property.
369
-
370
-
See the documentation for "WithViewStore" (https://pointfreeco.github.io/swift-composable-architecture/main/documentation/composablearchitecture/viewstore#overview) for more information.
/// Initializes a structure that transforms a store into an observable view store in order to
386
-
/// compute scenes from void store state.
387
-
///
388
-
/// - Parameters:
389
-
/// - store: A store of equatable state.
390
-
/// - content: A function that can generate content from a view store.
391
-
@available(
392
-
*,
393
-
deprecated,
394
-
message:
395
-
"""
396
-
For compiler performance, using "WithViewStore" from a scene builder is no longer supported. Extract this "WithViewStore" to the parent view, instead, or observe your view store from an "@ObservedObject" property.
397
-
398
-
See the documentation for "WithViewStore" (https://pointfreeco.github.io/swift-composable-architecture/main/documentation/composablearchitecture/viewstore#overview) for more information.
/// Initializes a structure that transforms a store into an observable view store in order to
414
-
/// compute toolbar content from store state.
415
-
///
416
-
/// - Parameters:
417
-
/// - store: A store.
418
-
/// - isDuplicate: A function to determine when two `ViewState` values are equal. When values
419
-
/// are equal, repeat view computations are removed,
420
-
/// - content: A function that can generate content from a view store.
421
-
@available(
422
-
*,
423
-
deprecated,
424
-
message:
425
-
"""
426
-
For compiler performance, using "WithViewStore" from a toolbar content builder is no longer supported. Extract this "WithViewStore" to the parent view, instead, or observe your view store from an "@ObservedObject" property.
427
-
428
-
See the documentation for "WithViewStore" (https://pointfreeco.github.io/swift-composable-architecture/main/documentation/composablearchitecture/viewstore#overview) for more information.
/// Initializes a structure that transforms a store into an observable view store in order to
451
-
/// compute toolbar content from equatable store state.
452
-
///
453
-
/// - Parameters:
454
-
/// - store: A store of equatable state.
455
-
/// - content: A function that can generate content from a view store.
456
-
@available(
457
-
*,
458
-
deprecated,
459
-
message:
460
-
"""
461
-
For compiler performance, using "WithViewStore" from a toolbar content builder is no longer supported. Extract this "WithViewStore" to the parent view, instead, or observe your view store from an "@ObservedObject" property.
462
-
463
-
See the documentation for "WithViewStore" (https://pointfreeco.github.io/swift-composable-architecture/main/documentation/composablearchitecture/viewstore#overview) for more information.
/// Initializes a structure that transforms a store into an observable view store in order to
479
-
/// compute toolbar content from void store state.
480
-
///
481
-
/// - Parameters:
482
-
/// - store: A store of equatable state.
483
-
/// - content: A function that can generate content from a view store.
484
-
@available(
485
-
*,
486
-
deprecated,
487
-
message:
488
-
"""
489
-
For compiler performance, using "WithViewStore" from a toolbar content builder is no longer supported. Extract this "WithViewStore" to the parent view, instead, or observe your view store from an "@ObservedObject" property.
490
-
491
-
See the documentation for "WithViewStore" (https://pointfreeco.github.io/swift-composable-architecture/main/documentation/composablearchitecture/viewstore#overview) for more information.
0 commit comments