damoonrashidi / bitalarm

An app to keep track of different cryptocurrencies, written in dart + flutter
197 stars 56 forks source link

Use bezier curves for coin graph #5

Open damoonrashidi opened 4 years ago

damoonrashidi commented 4 years ago

Currently the coin graph is using the path.lineTo function, causing the lines to be straight between nodes. It would be nice to use path.relativeCubicTo or path.relativeConicTo to make the graph prettier.