ascii_art 0.0.1 ascii_art: ^0.0.1 copied to clipboard
Ascii Art Widget for Flutter
Ascii Art #
Arcii Art Widget written by flutter.
Getting started #
In the pubspec.yaml
of your flutter project, add the following dependency:
dependencies:
...
ascii_art:
In your library add the following import.
import 'package:ascii_art/ascii_art.dart';
For help getting started with Flutter, view the online documentation.
Example #
final file = File("filePath");
AsciiArt(
file.readAsBytesSync(),
);
// OR
AsciiArt.file(
"filePath",
);
more Info Example