Mikael Sand

Results 142 comments of Mikael Sand

What versions of react-native and react-native-svg is this? Can you try v9.10.0?

The useNativeDriver issue should by fixed by a pr i made which is included in v0.60.0 and later

@jun58 I'd recommend using svgr to convert the content to react components, and then manually translate the animate element to use the react-native Animated api instead: https://facebook.github.io/react-native/docs/animated

The Easing api should have everything you need: https://facebook.github.io/react-native/docs/easing There's also https://github.com/osdnk/react-native-spline-interpolate which is for a unrelated problem, but also utilizes splines, but rather generates them to fit data, than...

Couldn't help myself 😄 https://snack.expo.io/@msand/animated-svg-with-bezier-spline-calcmode ```jsx import * as React from 'react'; import { Animated, Easing } from 'react-native'; import { Svg, Circle } from 'react-native-svg'; const AnimatedCircle = Animated.createAnimatedComponent(Circle);...

A bit refactored to make it more reusable: ```jsx import * as React from 'react'; import { Animated, Easing } from 'react-native'; import { Svg, Circle } from 'react-native-svg'; const...

@thepian Will you be publishing the socketstream-session package? And what is the current status with the project?