term 0.1.1 copy "term: ^0.1.1" to clipboard
term: ^0.1.1 copied to clipboard

It's a library that controls the terminal, including the cursor, color, and text.

example/term_example.dart

import 'dart:io';

import 'package:term/term.dart';

void main() {
  // Text formatting
  stdout.write('This is bold text\n'.bold()); // Make the text bold.
  TermTextCtrl.bold.apply(); // Make all the text after this bold.
  stdout.write('This is bold text too!\n');
  TermTextCtrl.reset.apply(); // Reset the text formatting.

  // Colros
  stdout.write('Red Fg'.fg(TermFgColors.red));
  stdout.write('Red Bg'.bg(TermBgColors.red));

  // Cursor
  stdout.write('\nCursor');
  wait();
  TermCursor.up();
  wait();
  TermErase.char(n: 3);
  wait();
  TermCursor.down();
}

/// Wait for a while, or we can't see the output.
void wait() {
  sleep(const Duration(milliseconds: 1000));
}
0
likes
130
pub points
0%
popularity

Publisher

verified publisherlolli.tech

It's a library that controls the terminal, including the cursor, color, and text.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

More

Packages that depend on term