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
As I looked definition of wrappedValue , I found notation below:
/// When a mutable binding value changes, the new value is immediately
/// available. However, updates to a view displaying the value happens
/// asynchronously, so the view may not show the change immediately.
public var wrappedValue: Value { get nonmutating set }
Is this the reason why?
p.s. If I set ensureTimeSpan before sinkToLoadable , then set time interval to 1.5 , it works as expected.
Hi, thanks for sharing and committing such a great project.
While using your architecture, I found that the the scope below is not always called:
clean-architecture-swiftui/CountriesSwiftUI/UI/Screens/CountryDetails/CountryDetails.swift
Lines 28 to 29 in 9f2a98a
even though you did
setIsLoading
at below:clean-architecture-swiftui/CountriesSwiftUI/Services/CountriesService.swift
Line 68 in 9f2a98a
Is this behavior intended?
What I'm expecting is that the loading view will be shown if you enter the view every time. But, it's not.
I've also checked actual value with
then I got
so I expected CountryDetails.swift#L29 to be run, but it's not.
It may be very basic behavior or just an overlook of me but I appreciate anyone's help.
The text was updated successfully, but these errors were encountered: