Describe the bug
When using DraggableFlatList react-native shows this warning:
ReactNativeFiberHostComponent: Calling getNode() on the ref of an Animated component is no longer necessary. You can now directly use the ref instead. This method will be removed in a future release.
From the stack I can see that it comes from:
DraggableFlatList:
[...]node_modules\react-native-draggable-flatlist\lib\index.js:304:9
Platform & Dependencies
Thanks for opening this issue and for the pull request 馃檹
Do you intend to merge this update?
For anyone getting this warning, you are probably using reanimated v2 instead of v1, which is the actual peer dependency for this library. So to get rid of it use reanimated v1.
Author himself decided to just ignore this error:
LogBox.ignoreLogs([ "ReactNativeFiberHostComponent: Calling getNode() on the ref of an Animated component is no longer necessary. You can now directly use the ref instead. This method will be removed in a future release.",]);
You may do this by yourself or try to install the latest version if it includes this commit (there is still no version 2.6.2 in expo installer configs)

Most helpful comment
For anyone getting this warning, you are probably using reanimated v2 instead of v1, which is the actual peer dependency for this library. So to get rid of it use reanimated v1.