Skip to content

Dart library is displaying tabular data in ASCII table format.

License

Notifications You must be signed in to change notification settings

yuzumone/tabler

Repository files navigation

Tabler

Usage

import 'package:tabler/tabler.dart';

main() {
  var tabler = Tabler(data: [['a', 'b', 'c']]);
  print(tabler);
  // +---+---+---+
  // | a | b | c |
  // +---+---+---+
}

License

MIT