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
Copy file name to clipboardExpand all lines: Sources/Store/MainQueueScheduler.swift
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -11,8 +11,7 @@ import SwiftUI
11
11
12
12
/// Scheduler that allows you to either have a `default` implementation of the `DispatchQueue.main` scheduler, a `synchronous` implementation that will immediately call back, a `test` scheduler for fine grained control of time, and an `animated` scheduler to drive animations.
13
13
/// You will want to use this to avoid the behavior of `DispatchQueue.main`'s scheduler to schedule work asynchronously by default.
Copy file name to clipboardExpand all lines: Sources/Store/Store.swift
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,6 @@ import SwiftUI
9
9
import Combine
10
10
11
11
/// A store is an `ObservableObject` that allows us to separate business and/or view level logic and the rendering of views in a way that is repeatable, prescriptive, flexible, and testable by default.
0 commit comments