bitalarm icon indicating copy to clipboard operation
bitalarm copied to clipboard

An app to keep track of different cryptocurrencies, written in dart + flutter

Results 2 bitalarm issues
Sort by recently updated
recently updated
newest added

WalletModel needs the following public method ```dart class WalletValue { double amount; double value; } ``` ```dart WalletContents getContents(Wallet wallet); ``` And `WalletService` needs the following methods, since they will...

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...