-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
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
support slivers #30
Comments
@gskinner I think the issue here is that So code like: CustomScrollView(
slivers: [
SomeSliver();
].animate(interval: 100.ms) Needs to produce something like: CustomScrollView(
slivers: [
SliverToBoxAdapter( // This is a `RenderSliver`, so no error will be triggered
child: Animate(
...
child: SomeSliver(),
)
)
] But I'm not sure that would work properly: would it break the normal behavior of |
Note, the workaround right now is to use the auto_animated package for slivers. |
This is a tricky one. I'll try to set up a test file some time soon and play around, but I don't have any specific ideas on how to solve it yet. Thoughts / ideas / code sketches are welcome. |
Please add support to SliverList |
+++ |
Looking forward to this |
Any progress on this? |
Still looking for any update on this support for slivers |
The work around obviously is have your target slivers use a builder delegate...if you look in the MD3 demo app it uses builder delegates for the component screen of slivers. Because it does that I can apply animate and effects to the list of widgets despite it finally rendering to slivers. |
Would be grate if we could do this:
The text was updated successfully, but these errors were encountered: