colorid_print 0.0.1
colorid_print: ^0.0.1 copied to clipboard
This is be help to see your print text very well
🖨️ colorid_print #
A simple yet powerful Dart utility to print colorized logs directly into the console. Ideal for CLI tools, debugging, and developer-friendly terminal outputs.
🚀 Features #
✅ Print colored text to the console
✅ Supports Red, Green, Blue (Cyan), Yellow colors
✅ Clean and easy-to-use static methods
✅ No dependencies, pure Dart
✅ Works out-of-the-box in any Dart console environment
📦 Installation #
Add this to your pubspec.yaml:
dependencies:
colorid_print: ^1.0.0
```dart
import 'package:colorid_print/colorid_print.dart';
void main() {
ColoridPrint.redPrint("🔥 Error: Something went wrong!");
ColoridPrint.greenPrint("✅ Success: Operation completed.");
ColoridPrint.bluePrint("🔵 Info: Waiting for response...");
ColoridPrint.yellowPrint("⚠️ Warning: Check your inputs.");
}