simple_date 1.1.0 copy "simple_date: ^1.1.0" to clipboard
simple_date: ^1.1.0 copied to clipboard

A simple date model for Dart with no notion of time. Useful for applications that rely on date-only events such as birthdays, anniversaries, and date ranges.

Simple Date #

A simple date class with no notion of time.

Can be used as a simpler alternative to Dart's DateTime.

Usage #

final today = SimpleDate.today();
final moonLanding = SimpleDate(1969, 07, 20);

print(today.isAfter(moonLanding)); // true

final birthday = SimpleDate(1998, 07, 20);
final age = birthday.difference(today);
print(age); // My current age!

Features and bugs #

Please file feature requests and bugs at the GitHub repository.

10
likes
140
pub points
52%
popularity

Publisher

verified publisherjfk.dev

A simple date model for Dart with no notion of time. Useful for applications that rely on date-only events such as birthdays, anniversaries, and date ranges.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

meta

More

Packages that depend on simple_date