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
ERROR Using UNSAFE_componentWillReceiveProps in strict mode is not recommended and may indicate bugs in your code. See https://react.dev/link/unsafe-component-lifecycles for details.
* Move data fetching code or side effects to componentDidUpdate.
* If you're updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://react.dev/link/derived-statePlease update the following components: %s withAnimatable(View)
Since this dependency seems not maintained anymore, is there a way to replace it with another one?
To be completely honest, I tried with react-native-reanimated. But I'm a beginner and was not able to test if this could work.
I have created a draft PR here: #171 (for the record, the second commit of this PR is a fix to avoid errors with eslint and commitlint)
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
react-native-autocomplete-dropdown
is usingreact-native-animatable
for the animation of entering and exiting of the dropdown here:react-native-autocomplete-dropdown/src/Dropdown.tsx
Lines 32 to 56 in 079c5b2
However, this dependency has not been updated since 2 years. Also it use
UNSAFE_componentWillReceiveProps
:https://github.com/oblador/react-native-animatable/blob/dfd7413734eb693358defcac536b0b32e9dc0b8c/createAnimatableComponent.js#L321-L349
So it's throwing an error:
Since this dependency seems not maintained anymore, is there a way to replace it with another one?
To be completely honest, I tried with
react-native-reanimated
. But I'm a beginner and was not able to test if this could work.I have created a draft PR here: #171 (for the record, the second commit of this PR is a fix to avoid errors with
eslint
andcommitlint
)The text was updated successfully, but these errors were encountered: