tempus

An implementation of some Moment.js features for parsing, manipulates and displaying dates in Dart.
Usage
A simple usage example:
import 'package:tempus/tempus.dart';
main() {
Duration secondsToAdd = new Duration(seconds: 10);
DateTime dateForComparison = new DateTime.now().add(secondsToAdd);
Moment moment = new Moment.now();
// should print "in a few seconds"
print(moment.from(dateForComparison));
}
Locales
Set the locale for all usages of Moment
:
Moment.globalLocale(new LocaleDE());
Set the locale only for the current instance of Moment
:
Moment moment = new Moment.now().locale(new LocaleDE());
Adding your own locale:
Just create a class that implements ILocale
and assign that to your Moment
instance or set it globally.
Overwriting existing locales:
class ShortLocaleEn extends LocaleEN {
String get seconds => '%is';
String get aMinute => '%im';
String get minutes => '%im';
String get anHour => '%ih';
String get hours => '%ih';
String get aDay => '%id';
String get days => '%id';
}
Features and bugs
Please file feature requests and bugs at the issue tracker.
Credits
This package draws inspiration and code from rinukkusu/simple_moment and apptreesoftware/date_utils.