textwrap 2.0.2 copy "textwrap: ^2.0.2" to clipboard
textwrap: ^2.0.2 copied to clipboard

Text wrapping and filling. It's a pure port of textwrap from Python.

example/example.dart

// ignore_for_file: avoid_print

import 'package:textwrap/textwrap.dart';

void main() {
  var text = "Hello there, how are you this fine day?  I'm glad to hear it!";
  // Hello there, how are you
  // this fine day?
  // I'm glad to hear it!
  print(wrap(text, width: 20).join('\n'));
}
10
likes
160
points
13.4k
downloads

Publisher

unverified uploader

Weekly Downloads

Text wrapping and filling. It's a pure port of textwrap from Python.

Repository (GitHub)
View/report issues

Topics

#text

Documentation

API reference

License

MIT (license)

Dependencies

meta

More

Packages that depend on textwrap