date_utils 0.2.0 copy "date_utils: ^0.2.0" to clipboard
date_utils: ^0.2.0 copied to clipboard

A Dart library for manipulating DateTimes.

date_utils #

CI

A Dart library to manipulate DateTimes. Useful for creating calendar functionality.

Example #

See Packages:

Tzolkin Web Calendar

flutter_calendar

Usage #

  1. Add the following to your pubspec.yaml:
dev_dependencies:
    date_utils: ^0.2.0
copied to clipboard
  1. Run dart pub get

  2. Import the package in your Dart code

import 'package:date_utils/date_utils.dart';
copied to clipboard
  1. Use the Utils class.
// example
var date = new DateTime(2017, 3);
var lastDay = Utils.lastDayOfMonth(date);
print(lastDay.day);
// => 31
copied to clipboard
30
likes
120
points
875
downloads

Publisher

verified publisherjpryan.me

Weekly Downloads

2025.01.07 - 2025.12.02

A Dart library for manipulating DateTimes.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

intl

More

Packages that depend on date_utils