Sergei Zheleshchenko

Results 3 comments of Sergei Zheleshchenko

@Caseyvlogger You need to create a [development build](https://docs.expo.dev/develop/development-builds/create-a-build/).

This temporary workaround works in my case. ```tsx const dragOffset = useSharedValue(0); const handleDragChange = ({ nativeEvent }) => { dragOffset.value = nativeEvent.value; }; const handleDragEnd = ({ nativeEvent })...

@lodev09 Yep, I tried copy-pasting code from the example, but `nativeEvent.value` still stops changing as soon as I stop dragging the sheet. On the other hand, that seems logical since...