feature/itemDescription #3

Merged
v4l3n71n merged 12 commits from feature/itemDescription into main 2024-07-06 07:50:21 +00:00
Showing only changes of commit e216e9d698 - Show all commits

View File

@ -103,7 +103,10 @@ class _MyHomePageState extends State<ListItemMenu> {
return ListTile(
title: Text('${post.name!}'),
subtitle: Text('${post.place!}\n${date} ${time}'));
subtitle: Text('${post.place!}\n${date} ${time}'),
onTap: () {
print("${post.id!}");
});
},
separatorBuilder: (context, index) {
return Divider();