ansi_styles 0.3.2 ansi_styles: ^0.3.2 copied to clipboard
ANSI escape codes for styling strings in the terminal.
🌈 AnsiStyles
Create colorful terminal output with ansi styled text in io environments.Usage #
Import the package:
import 'package:ansi_styles/ansi_styles.dart';
Use the AnsiStyle
export to create styled text by chaining properties. For example:
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'));
}
Output preview:
To remove any ansi styling from text, call the strip()
method:
String styledText = AnsiStyles.red.underline('Underlined red text');
String cleanText = AnsiStyles.strip(styledText);
String Extension #
This package also provides a String Extension which can be imported:
import 'package:ansi_styles/src/extension.dart';
Styling methods are now available on Strings:
void main() {
print('hello'.bold.red);
print('hello'.bold.red.underline.bgBlack);
}
License #
- See LICENSE
Built and maintained by Invertase.