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
{{ message }}
This repository has been archived by the owner on Oct 4, 2021. It is now read-only.
I was doing research about 'Flip Animation' when i find your great article on this subject.
I build my own hook to do a really simple flip on row re-order but i was wondering why do you use context and id instead of a register function based on ref ? Is it to keep support for Class component ?
Context is to make element cache available to other parts of the library, such as AnimateInOut which might need to know whether an item is being animated or not, for example.
In previous version there was a case where I think refs would not work, but probably not anymore.
Actually I'm (very slowly) working on the next version, and I will use refs there.
Thanks for your quick answer. I'm asking this mainly for educational purpose and i look to the lib code and it looks amazing ! Great job with this lib.
I was doing research about 'Flip Animation' when i find your great article on this subject.
I build my own hook to do a really simple flip on row re-order but i was wondering why do you use context and id instead of a register function based on ref ? Is it to keep support for Class component ?
The text was updated successfully, but these errors were encountered: