braille_dart 1.0.0 copy "braille_dart: ^1.0.0" to clipboard
braille_dart: ^1.0.0 copied to clipboard

A helper library for TUIs related to the Braille Unicode symbols.

Braille.dart #

A helper library for Text-based User Interfaces related to the Braille Unicode symbols.

Features so far #

  • BrailleCharacter: The core of the library, which has handling for position-specific dots or value-specific dots (called bits) and auto-converting to a string (overrided toString)

Example #

var char = BrailleCharacter();

char.dotOn(0, 0);
char.dotOn(1, 2);
char.dotOn(0, 3);

print("$char"); // Output: '⡡'

char.invert();
print("$char"); // Output: '⢞'

For a full example - about making an F shape, see example/braille_example.dart

0
likes
0
points
144
downloads

Publisher

unverified uploader

Weekly Downloads

A helper library for TUIs related to the Braille Unicode symbols.

Repository (GitHub)
View/report issues

License

unknown (license)

More

Packages that depend on braille_dart