ext_utils 1.0.1 copy "ext_utils: ^1.0.1" to clipboard
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.

example/lib/main.dart

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!'),
        ),
      ),
    );
  }
}
1
likes
150
points
35
downloads

Publisher

verified publisherrillastudios.ca

Weekly Downloads

ExtUtils is a Flutter package desiged to implement helpful utilities to make the development process quicker and easier.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

Funding

Consider supporting this project:

www.buymeacoffee.com

License

BSD-3-Clause (license)

Dependencies

flutter, intl

More

Packages that depend on ext_utils