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

outdated

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

example/example.dart

import 'package:textwrap/textwrap.dart';

void main() {
  final 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: 12));
}
10
likes
0
points
4.77k
downloads

Publisher

unverified uploader

Weekly Downloads

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

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

meta

More

Packages that depend on textwrap