feat: update grid tile extent

This commit is contained in:
Anton Stubenbord
2023-06-17 20:54:03 +02:00
parent bdaec78df1
commit a9dcf69d90
2 changed files with 3 additions and 3 deletions

View File

@@ -108,12 +108,12 @@ class DocumentGridItem extends DocumentItem {
padding: const EdgeInsets.only(bottom: 8.0),
child: Text(
document.title,
maxLines: document.tags.isEmpty ? 3 : 2,
maxLines: 3,
overflow: TextOverflow.ellipsis,
style: Theme.of(context).textTheme.titleMedium,
),
),
Spacer(),
const Spacer(),
Text(
DateFormat.yMMMd().format(document.created),
style: Theme.of(context).textTheme.bodySmall,