Skip to content

Instantly share code, notes, and snippets.

View Abdurrahman98XX's full-sized avatar
🎯
Focusing

Abdurrahman Adel Abdurrahman98XX

🎯
Focusing
  • Abdurrahman Adel
  • Egypt, Fayoum
View GitHub Profile
// ignore_for_file: library_private_types_in_public_api
extension AnsiColorLog on String {
_FG get fg => _FG(this);
_BG get bg => _BG(this);
}
/// Colors for the ForeGround
class _FG {
const _FG(this.t);
import 'package:flutter/material.dart';
class HarryPoter extends StatefulWidget {
const HarryPoter({
super.key,
required this.child,
});
final Widget child;