Replies: 1 comment
-
Turned out that this was solved by putting the task modifier in the view at the end (after a view modifier that applied a shimmering effect)... Tried to reproduce this in a simple isolated demo but was not successful. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have the following working scenario where a dependency is returning an async stream:
Adding a second effect (task) and using
EffectTask.merge
will cause the async stream to be terminated almost immediately. Thecontinuation.onTermination
is called.EffectTask.merge
works fine if more run effects are added, it will only fail when adding a task modifier:Note that all examples above will work if the
task
action is called from either a button tap or fromonAppear
instead of thetask
view modifier:Beta Was this translation helpful? Give feedback.
All reactions