diff --git a/lib/src/InteractableView.js b/lib/src/InteractableView.js index acad28ac..6c52eed8 100644 --- a/lib/src/InteractableView.js +++ b/lib/src/InteractableView.js @@ -73,7 +73,7 @@ class WrappedAnimatedInteractableView extends Component { } else if (Platform.OS === 'android') { UIManager.dispatchViewManagerCommand( ReactNative.findNodeHandle(this), - UIManager.InteractableView.Commands.setVelocity, + UIManager.getViewManagerConfig('InteractableView').Commands.setVelocity, [params], ); } @@ -85,7 +85,7 @@ class WrappedAnimatedInteractableView extends Component { } else if (Platform.OS === 'android') { UIManager.dispatchViewManagerCommand( ReactNative.findNodeHandle(this), - UIManager.InteractableView.Commands.snapTo, + UIManager.getViewManagerConfig('InteractableView').Commands.snapTo, [params], ); } @@ -97,7 +97,7 @@ class WrappedAnimatedInteractableView extends Component { } else if (Platform.OS === 'android') { UIManager.dispatchViewManagerCommand( ReactNative.findNodeHandle(this), - UIManager.InteractableView.Commands.changePosition, + UIManager.getViewManagerConfig('InteractableView').Commands.changePosition, [params], ); } @@ -107,7 +107,7 @@ class WrappedAnimatedInteractableView extends Component { if (Platform.OS === 'android') { UIManager.dispatchViewManagerCommand( ReactNative.findNodeHandle(this), - UIManager.InteractableView.Commands.bringToFront, + UIManager.getViewManagerConfig('InteractableView').Commands.bringToFront, [], ); }