chore: Follow up presences

This commit is contained in:
krille-chan 2023-11-11 20:29:49 +01:00
parent bee90019bb
commit 59de9d299d
No known key found for this signature in database

View file

@ -51,6 +51,7 @@ class UserBottomSheetView extends StatelessWidget {
final lastActiveTimestamp = presence.lastActiveTimestamp; final lastActiveTimestamp = presence.lastActiveTimestamp;
return Row( return Row(
mainAxisSize: MainAxisSize.min,
children: [ children: [
Container( Container(
width: 8, width: 8,
@ -64,13 +65,15 @@ class UserBottomSheetView extends StatelessWidget {
if (presence.currentlyActive == true) if (presence.currentlyActive == true)
Text( Text(
L10n.of(context)!.currentlyActive, L10n.of(context)!.currentlyActive,
overflow: TextOverflow.ellipsis,
style: Theme.of(context).textTheme.bodySmall, style: Theme.of(context).textTheme.bodySmall,
), )
if (lastActiveTimestamp != null) else if (lastActiveTimestamp != null)
Text( Text(
L10n.of(context)!.lastActiveAgo( L10n.of(context)!.lastActiveAgo(
lastActiveTimestamp.localizedTimeShort(context), lastActiveTimestamp.localizedTimeShort(context),
), ),
overflow: TextOverflow.ellipsis,
style: Theme.of(context).textTheme.bodySmall, style: Theme.of(context).textTheme.bodySmall,
), ),
], ],