flutter_timeago_pro 1.0.0 copy "flutter_timeago_pro: ^1.0.0" to clipboard
flutter_timeago_pro: ^1.0.0 copied to clipboard

A Flutter/Dart extension that formats DateTime values into human-friendly adapting intelligently from "Just now" to weekday,date, or full date depending on how far in the past the time is.

flutter_timeago_pro #

pub version License: MIT Flutter GitHub Sponsors GitHub code size in bytes GitHub forks GitHub issues GitHub issues

A Flutter extension that formats DateTime? values into human-friendly, context-aware timestamps — the way notification apps, chat apps, and social feeds actually show time.

Unlike packages that say "48 hours ago" or "7 days ago" forever, flutter_timeago_pro adapts intelligently based on how far in the past the date is:

Age Output Output (isShowTime: false)
< 1 minute Just now Just now
< 1 hour 45m ago 45m ago
Today 02:30 PM 02:30 PM
Yesterday Yesterday, 02:30 PM Yesterday
2–6 days ago Friday, 02:30 PM Friday
Same year, > 1 week 15 Jan, 02:30 PM 15 Jan
Different year 15 Jan 2025, 02:30 PM 15 Jan 2025
null Unknown time Unknown time

Getting started #

Add to your pubspec.yaml:

dependencies:
  flutter_timeago_pro: ^1.0.0

Then run:

flutter pub get

Usage #

import 'package:flutter_timeago_pro/flutter_timeago_pro.dart';

// In any widget:
Text(notification.createdAt.toTimeagoFormat())

Hide the time portion #

post.publishedAt.toTimeagoFormat(isShowTime: false);
// → "Friday" | "15 Jan" | "15 Jan 2024"

24-hour clock #

dateTime.toTimeagoFormat(timePattern: 'HH:mm');
// → "14:30"

Custom locale / i18n #

const bahasa = TimestampLocale(
  justNow: 'Baru saja',
  yesterday: 'Kemarin',
  minutesAgoSuffix: 'm lalu',
  unknownTime: 'Waktu tidak diketahui',
);

dateTime.toTimeagoFormat(locale: bahasa);

Testing / custom reference time #

// Pass a fixed "now" so your widget tests are deterministic:
dateTime.toTimeagoFormat(
  referenceTime: DateTime(2024, 6, 15, 14, 30),
);

API #

toTimeagoFormat #

String toTimeagoFormat({
  bool isShowTime = true,
  TimestampLocale locale = const TimestampLocale(),
  String timePattern = 'hh:mm a',
  DateTime? referenceTime,
})
Parameter Type Default Description
isShowTime bool true Append the time portion to the label
locale TimestampLocale English defaults Customise "Just now", "Yesterday", etc.
timePattern String 'hh:mm a' Any intl DateFormat pattern
referenceTime DateTime? DateTime.now() Anchor for relative comparison

TimestampLocale #

const TimestampLocale({
  String justNow = 'Just now',
  String minutesAgoSuffix = 'm ago',
  String yesterday = 'Yesterday',
  String unknownTime = 'Unknown time',
});

Why not timeago or jiffy? #

Those packages are great but they keep emitting relative phrases ("2 days ago", "a week ago") no matter how old the date is. For notifications, chat bubbles, or feed items, showing "a month ago" is less useful than showing the actual date. flutter_timeago_pro switches to absolute dates exactly when relative labels stop being helpful.


Contributing #

PRs and issues are welcome! Please open an issue first for significant changes.


License #

MIT © 2026 aslamambiloly

19
likes
0
points
279
downloads

Publisher

verified publisheraslamambiloly.2bd.net

Weekly Downloads

A Flutter/Dart extension that formats DateTime values into human-friendly adapting intelligently from "Just now" to weekday,date, or full date depending on how far in the past the time is.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, intl

More

Packages that depend on flutter_timeago_pro