3

After upgrading react-native-redash from 9.6.0 to 15.11.1, I can't find useValues anymore. Has it been removed? Is there a new preferred way to get animated values?

Vladyslav Zavalykhatko
  • 15,202
  • 8
  • 65
  • 100

1 Answers1

5

In the github readme it is written under "V1 Users", that you can import old functions from v1 via:

import { useValues } from  "react-native-redash/lib/module/v1";

Update December 2022.

Since version 17.0.0 v1 version is not supported anymore. The Last compatible version is 16.3.0. You can use this version from GitHub as well.

Tim
  • 10,459
  • 4
  • 36
  • 47