mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-15 00:19:28 +01:00
14 lines
421 B
Dart
14 lines
421 B
Dart
import 'package:famedlysdk/famedlysdk.dart';
|
|
import 'package:fluffychat/l10n/l10n.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'date_time_extension.dart';
|
|
|
|
extension PresenceExtension on Presence {
|
|
String getLocalizedStatusMessage(BuildContext context) {
|
|
if (statusMsg?.isNotEmpty ?? false) {
|
|
return statusMsg;
|
|
}
|
|
return L10n.of(context).lastActiveAgo(time.localizedTimeShort(context));
|
|
}
|
|
}
|