sparkline_console 1.0.3
sparkline_console: ^1.0.3 copied to clipboard
Simple sparkline for command line applications. Allows for custom level set.
sparkline_console #
A library for generating command line sparklines.
In the package repository: here
Adapted from this Go library.
Usage #
A simple usage example:
import 'package:sparkline_console/sparkline_console.dart';
main() {
var sparkLine = new SparkLine();
print(sparkLine.generate([1, 2, 3, 4, 5, 6, 7, 8])); // ▁▂▃▄▅▆▇█
}