flutter_timeago_pro 3.0.4
flutter_timeago_pro: ^3.0.4 copied to clipboard
Formats DateTime? into fuzzy timestamps (e.g. "Just now", "5m ago" ) intelligently based on how far the DateTime? is.
flutter_timeago_pro #
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 or future the date is:
| Age/Time | Output | Output when showTimeForOveraged: false |
|---|---|---|
| < 1 minute | Just now |
Just now |
| < 1 hour (past) | 45m ago |
45m ago |
| < 1 hour (future) | in 45m |
in 45m |
| Today | 02:30 PM |
02:30 PM |
| Yesterday | Yesterday, 02:30 PM |
Yesterday |
| Tomorrow | Tomorrow, 02:30 PM |
Tomorrow |
| 2–6 days ago | Friday, 02:30 PM |
Friday |
| 2–6 days ahead | Monday, 02:30 PM |
Monday |
| 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 |
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.
Getting started #
Add to your pubspec.yaml:
dependencies:
flutter_timeago_pro: ^3.0.4
Then run:
flutter pub get
Usage #
import 'package:flutter_timeago_pro/flutter_timeago_pro.dart';
// Past dates:
final pastDate = DateTime.now().subtract(const Duration(minutes: 25));
Text(pastDate.toTimeagoFormat())
// → "25m ago"
// Future dates:
final futureDate = DateTime.now().add(const Duration(minutes: 45));
Text(futureDate.toTimeagoFormat())
// → "in 45m"
Hide the time portion #
dateTime.toTimeagoFormat(showTimeForOveraged: false);
// → "Friday" | "15 Jan" | "15 Jan 2024"
Custom timeago limit #
// Override the default 1-hour limit to 3 hours
dateTime.toTimeagoFormat(timeagoLimit: const Duration(hours: 3));
// Output for 2h 30m ago → "2h ago"
24-hour clock #
dateTime.toTimeagoFormat(timePattern: 'HH:mm');
// → "14:30"
Custom locale / i18n #
const bahasa = TimestampLocale(
justNow: 'Baru saja',
yesterday: 'Kemarin',
tomorrow: 'Besok',
minutesAgoSuffix: 'm lalu',
hoursAgoSuffix: 'j lalu',
minutesFromNowPrefix: 'dalam ',
hoursFromNowPrefix: 'dalam ',
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 showTimeForOveraged = true,
TimestampLocale locale = const TimestampLocale(),
String timePattern = 'hh:mm a',
DateTime? referenceTime,
Duration timeagoLimit = const Duration(hours: 1),
})
| Parameter | Type | Default | Description |
|---|---|---|---|
showTimeForOveraged |
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 |
timeagoLimit |
Duration |
const Duration(hours: 1) |
Maximum age to show as "Xm/Xh ago" |
TimestampLocale #
const TimestampLocale({
String justNow = 'Just now',
String minutesAgoSuffix = 'm ago',
String hoursAgoSuffix = 'h ago',
String yesterday = 'Yesterday',
String tomorrow = 'Tomorrow',
String minutesFromNowPrefix = 'in ',
String hoursFromNowPrefix = 'in ',
String unknownTime = 'Unknown time',
});
Contributing #
PRs and issues are welcome! Please open an issue first for significant changes.
License #
Made with 💛 by aslamambiloly © 2026

