Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add another ways to mark function as worklet. #1310

Merged
merged 6 commits into from
Oct 7, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
handle deps
  • Loading branch information
szymon committed Oct 6, 2020
commit cc23ac6ff33a14adf35b5c1cb833b76c95c71b6b
4 changes: 2 additions & 2 deletions src/reanimated2/Hooks.js
Original file line number Diff line number Diff line change
Expand Up @@ -595,8 +595,8 @@ export function useAnimatedReaction(prepare, react) {
}, inputs);
}

export function useWorkletCallback(fun) {
return useCallback(fun);
export function useWorkletCallback(fun, deps) {
return useCallback(fun, deps);
}

export function createWorklet(fun) {
Expand Down