remove offset cuz it got fixed in lac
This commit is contained in:
parent
39b12fe3bc
commit
3afb5c9d11
|
@ -2,11 +2,8 @@ import 'package:timeago/timeago.dart' as timeago;
|
||||||
|
|
||||||
extension FancyTime on DateTime {
|
extension FancyTime on DateTime {
|
||||||
/// returns `this` time as a relative, human-readable string. In short format
|
/// returns `this` time as a relative, human-readable string. In short format
|
||||||
String get fancyShort => timeago.format(this,
|
String get fancyShort => timeago.format(this, locale: 'en_short');
|
||||||
locale: 'en_short',
|
|
||||||
clock: DateTime.now().subtract(DateTime.now().timeZoneOffset));
|
|
||||||
|
|
||||||
/// returns `this` time as a relative, human-readable string
|
/// returns `this` time as a relative, human-readable string
|
||||||
String get fancy => timeago.format(this,
|
String get fancy => timeago.format(this);
|
||||||
clock: DateTime.now().subtract(DateTime.now().timeZoneOffset));
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue