write_centered method

void write_centered(
  1. String text
)

Implementation

void write_centered(
  final String text,
) {
  final column = ((console.columns / 2) - (text.length / 2)).round();
  final row = (console.rows / 2).round();
  console.move_cursor(row: row, column: column);
  console.raw_console.write(text);
}