Skip to content

Latest commit

 

History

History

ansi_wrap

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

ansi_wrap

Wordwrap a string with ANSI escape codes

Install

$ dart pub add ansi_wrap

Usage

import 'package:ansi/ansi.dart';
import 'package:ansi_wrap/ansi_wrap.dart';

void main() {
  final input = 'The quick brown ${red('fox jumped over ')}the lazy ${green('dog and then ran away with the unicorn.')}';
  print(wrapAnsi(input, 20));
}