better_moment 0.1.0 copy "better_moment: ^0.1.0" to clipboard
better_moment: ^0.1.0 copied to clipboard

discontinued

A port of the Moment.js library for easy time manipulation in Dart.

better_moment Build Status #

An implementation of some Moment.js features for parsing, manipulates and displaying dates in Dart.

Usage #

A simple usage example:

import 'package:better_moment/better_moment.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.

0
likes
20
pub points
0%
popularity

Publisher

unverified uploader

A port of the Moment.js library for easy time manipulation in Dart.

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

More

Packages that depend on better_moment