This package makes it possible to use colored prints.
pubspec.yaml
dependency:
colored_print: <lastest version>
your_file.dart
import 'package:colored_print/colored_print.dart';
print('${PrintColor.magenta('Magenta Color')} and ${PrintColor.yellow('Yellow Color')}');
Result:
To facilitate its use, the auxiliary class ColoredPrint
was created:
import 'package:colored_print/colored_print.dart';
//For single color line
ColoredPrint.show("Single Color Message", messageColor: PrintColor.cyan);
//For warning messages
ColoredPrint.warning("Warning Message");
//For error messages
ColoredPrint.error("Error Message");
//For success messages
ColoredPrint.success("Success Message");
//For logs (default)
ColoredPrint.log("Custom Log Message");
//For logs using custom tag and custom colors
ColoredPrint.log(
"Custom Message",
tag: "WALLACE", //Optional parameter. Default: "LOG"
messageColor: PrintColor.white, //Optional parameter. Default: PrintColor.yellow
tagColor: PrintColor.grey, //Optional parameter. Default: PrintColor.grey
);
Result:
This project is a starting point for a Dart package, a library module containing code that can be shared easily across multiple Flutter or Dart projects.
For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.