S
SolidJS13mo ago
Grahf

Solid Transition with createServerData$

Is there a way to get Solid Transition (https://docs.solidjs.com/guides/how-to-guides/animations-in-solid/solid-transition-group) to work with showing data that's fetched using createServerData$? I get no animation when I try to use solid transition on a component that uses createServerData$. I get animations when I use solid transition of arrays like this one: const test = ['123', 'abc'] so I'm pretty sure the reason there is no animation is because of createServerData$. Actually it shows the animation when the component is closed but not when it's opened.
1 Reply
Grahf
Grahf13mo ago
Using onAfterEnter instead of onEnter with Solid Transition and it appears to work........
Will leave this here incase anyone else has same issue.... no it stopped working again