ext_utils 1.0.1
ext_utils: ^1.0.1 copied to clipboard
ExtUtils is a Flutter package desiged to implement helpful utilities to make the development process quicker and easier.
import 'package:ext_utils/ext_utils.dart';
import 'package:flutter/material.dart';
void main() {
final now = DateTime.now();
bool today = now.isToday(); // true
debugPrint('Today: $today');
runApp(const MainApp());
}
class MainApp extends StatelessWidget {
const MainApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: Scaffold(
body: Center(
child: Text('Hello World!'),
),
),
);
}
}