Subtitle
This commit is contained in:
@@ -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(),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user