We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi First of all, thank you I'm learning a lot about clean architecture for Swift UI from you
stranger-things-swiftui-state in the "Clean Architecture for SwiftUI" article, "Coordinator is history" Section In this scenario,
struct TestView: View { let publisher = PassthroughSubject<String, Never>() // 1 let publisher = CurrentValueSubject<String, Never>("") // 2 var body: some View { MyView(publisher: publisher.eraseToAnyPublisher()) } }
Scenario 2 works differently.
Here's my code.
import SwiftUI @main struct TestSwiftUIApp: App { var body: some Scene { WindowGroup { ContentView() } } }
import SwiftUI import Combine struct ContentView: View { let publisher = CurrentValueSubject<String, Never>("") // 2 var body: some View { MyView(publisher: publisher.eraseToAnyPublisher()) } } struct MyView: View { let publisher: AnyPublisher<String, Never> @State var text: String = "" @State var didAppear: Bool = false var body: some View { Text(text) .onAppear { self.didAppear = true } .onReceive(publisher) { print("onReceive") self.text = $0 } } }
my answer is 1...
also
struct MyView: View { let publisher: AnyPublisher<String, Never> @State var text: String = "" @State var didAppear: Bool = false var body: some View { Text(text) .onAppear { self.didAppear = true self.text = "abc" } .onReceive(publisher) { print("onReceive") self.text = $0 } } }
my answer is "abc"...
The result is different because of SwifttUI 2.0? or I'm missing something?
Thanks
The text was updated successfully, but these errors were encountered:
Possibly a SwiftUI 2.0 change. Could you try running this on iOS 13?
Sorry, something went wrong.
I just installed the 13.0 simulator. and built. Here's my code
import SwiftUI import Combine struct ContentView: View { let publisher = CurrentValueSubject<String, Never>("") // 2 var body: some View { MyView(publisher: publisher.eraseToAnyPublisher()) } } struct MyView: View { let publisher: AnyPublisher<String, Never> @State var text: String = "" @State var didAppear: Bool = false var body: some View { Text(text) .onAppear { self.didAppear = true self.text = "abc" print(UIDevice.current.systemVersion) } .onReceive(publisher) { print("onReceive") self.text = $0 } } }
Something seems to be updated
No branches or pull requests
Hi
First of all, thank you
I'm learning a lot about clean architecture for Swift UI from you
stranger-things-swiftui-state in the "Clean Architecture for SwiftUI" article, "Coordinator is history" Section
In this scenario,
Scenario 2 works differently.
Here's my code.
my answer is 1...
also
my answer is "abc"...
The result is different because of SwifttUI 2.0? or I'm missing something?
Thanks
The text was updated successfully, but these errors were encountered: