Daehyeon Mun

Results 9 comments of Daehyeon Mun

@efstathiosntonas Hi :) Thanks for your comment. As I mentioned backgroundColor is just an example for reproduce. It can be opacity, scale and so on. The point is that animation...

@efstathiosntonas Yes we decided not to use animation inline styling till this issue is solved. We can make animations with useAnimatedStyle as u said. It looks like re-rendering breaks connection...

@mzaien 's plugin works like magic. Thanks for the community !

@wcandillon I tried the code below on the web but it doesn't work. 🥲 ``` const half3 W = half3(0.2125, 0.7154, 0.0721); half3 overlayBlender(half3 Color, half3 filter) { half3 filter_result;...

if you are bumped into this issue but need solve it quickly, use the old Swipeable instead as a temporary solution. https://docs.swmansion.com/react-native-gesture-handler/docs/components/swipeable

Same issue. So I had to wrap it with try and skip checking store version to avoid this exception.

Hope this feature to be shipped on the next version

This works to me ``` const customFontMgr = useFonts({ OrbitronBold: [ Platform.OS === 'web' ? { default: require('./YourFont.ttf') } : require('./YourFont.ttf') , ], }); ```