0 purchases
timeago text
timeago_text #
Flutter text widget with fuzzy date time and auto update text time (ex. 1 minute ago)
Since it's just basically a flutter text widget, so you can use every properties as the flutter text widget.
now supporting 4 types of text
en
en_short
th
th_short
Installing #
dependencies:
timeago_text: ^0.0.2+1
copied to clipboard
Import #
import 'package:timeago_text/timeago_text.dart';
copied to clipboard
Usage #
Use the package as following:
TimeAgoText(date: yourDate, lang: 'en')
// normal English text format (ex. 15 minutes ago)
TimeAgoText(date: yourDate, lang: 'en_short')
// short English text format (ex. 15 min)
TimeAgoText(date: yourDate, lang: 'th')
// normal Thai text format (ex. 15 นาทีที่แล้ว)
TimeAgoText(date: yourDate, lang: 'th_short')
// short Thai text format (ex. 15 น.)
copied to clipboard
More #
Note that it's just a flutter stateful widget with a predefined unique key for the widget.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.