This commit is contained in:
Nopylacetat
2023-10-21 13:33:49 +02:00
parent e7631a2668
commit af019a81ac

View File

@@ -22,19 +22,10 @@ class _FeedPageState extends State<FeedPage> {
return Card( return Card(
child: ListTile( child: ListTile(
title: Text(feedItem.text), title: Text(feedItem.text),
trailing: Row( subtitle: Text(getTimeString(feedItem.timestamp)),
mainAxisSize: MainAxisSize.min, trailing: Text(
mainAxisAlignment: MainAxisAlignment.end, '${feedItem.timestamp.hour}:${feedItem.timestamp.minute}',
children: [ style: Theme.of(context).textTheme.bodyLarge!.copyWith(),
Text(getTimeString(feedItem.timestamp)),
const Padding(
padding: EdgeInsets.symmetric(horizontal: 15),
),
Text(
'${feedItem.timestamp.hour}:${feedItem.timestamp.minute}',
style: Theme.of(context).textTheme.bodyLarge!.copyWith(),
),
],
), ),
), ),
); );