ansi_styles 0.3.1-dev.0 copy "ansi_styles: ^0.3.1-dev.0" to clipboard
ansi_styles: ^0.3.1-dev.0 copied to clipboard

outdated

ANSI escape codes for styling strings in the terminal.

example/main.dart

// ignore_for_file: avoid_print
import 'package:ansi_styles/ansi_styles.dart';

void main() {
  print(AnsiStyles.red.underline('Underlined red text'));
  print(AnsiStyles.inverse.italic.green('Inverted italic green text'));
  print(AnsiStyles.cyan('Cyan text'));
  print(AnsiStyles.bgYellowBright.bold('Bold text with a yellow background'));
  print(AnsiStyles.bold.rgb(255, 192, 203)('Bold pink text'));
  print(
    AnsiStyles.strikethrough
        .bgRgb(255, 165, 0)('Strikethrough text with an orange background'),
  );
}
11
likes
0
pub points
83%
popularity

Publisher

verified publisherinvertase.io

ANSI escape codes for styling strings in the terminal.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on ansi_styles