neoansi 0.1.0 neoansi: ^0.1.0 copied to clipboard
ANSI escape sequences and styling micro-library written in fluent/modern Dart.
import 'dart:io';
import 'package:neoansi/neoansi.dart';
void main() {
AnsiSink.from(stdout)
..setForegroundColor(Ansi1BitColors.red)
..write('Hello ')
..setForegroundColor(Ansi1BitColors.green)
..setUnderlined()
..write('World')
..resetStyles()
..writeln('!');
}