ethantran / react-native-examples

UI examples from pttrns.com converted to React Native. Examples of SVG Animation with react-native-svg, flubber, d3
325 stars 59 forks source link

Polygon example does not work on Android #9

Open hokasan opened 6 years ago

hokasan commented 6 years ago

There seems to an issue with using "d=" and Polygon on android. "Points=" seems to work, bit I havent been able to convert the "d" path into points.

screen shot 2018-06-01 at 11 38 39

hokasan commented 6 years ago

And one second after writing the issue I got it to work....typical :)

In AnimatedSvgPolygon.js I change from using d={d} to just points={this.points.values} Not sure if I need to convert the numbers o anything, but at least they are animating now.