neoansi 0.2.1 copy "neoansi: ^0.2.1" to clipboard
neoansi: ^0.2.1 copied to clipboard

discontinued

ANSI escape sequences and styling micro-library written in fluent/modern Dart.

example/example.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('!');
}
1
likes
0
pub points
43%
popularity

Publisher

verified publisherneodart.dev

ANSI escape sequences and styling micro-library written in fluent/modern Dart.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

meta

More

Packages that depend on neoansi