Replies: 4 comments 10 replies
-
What issue? |
Beta Was this translation helpful? Give feedback.
-
I have the exact same situation where I'm running multiple apps within a parent app (its a storybook type app that renders my app multiple times in different variations). The workaround of overriding vsync works, but would be great to have a proper fix since this API is scheduled to be removed in 3.0. |
Beta Was this translation helpful? Give feedback.
-
I've also been having the same message with StreamProvider on firebase RTDB snapshots. It seems to occur after a hot restart has occurred. |
Beta Was this translation helpful? Give feedback.
-
@rrousselGit The issue still exists for me, and now that vsyncOverride has been removed the workaround no longer works. I've created a test that reproduces the issue: #3118 |
Beta Was this translation helpful? Give feedback.
-
I have a use-cases, where I basically show two apps side-by-side (client/server apps connected via IP).
Both have their own "world" and hence I created a parentless ProviderContainer for both. However, there are some issues around vsync here since only one container can own the vsyncOverride.
So, I manually defined my own vsyncOverride:
I am wondering why you are not using
WidgetsBinding.instance.scheduleFrameCallback
in your_flutterVsync
, but doing this:Beta Was this translation helpful? Give feedback.
All reactions