Ovidiu Alexandrescu
Results
1
comments of
Ovidiu Alexandrescu
Had same issue when tried to call `setInputState` inside `useEffect`. iOS was crashing. Resolved this by using `InteractionManager` Before ```jsx useEffect(() => { riveRef?.current?.setInputState('hero', 'health', healthValue); }, [healthValue]); ``` After...