haxonadora
Results
1
comments of
haxonadora
Add this to pinch gesture ``` .onTouchesUp((e, state) => { if (e.numberOfTouches !== 2) { state.end(); } }) .onTouchesDown((e, state) => { if (e.numberOfTouches === 2) { state.begin(); } })...