prevent title overflow

This commit is contained in:
Fabian Freund
2025-07-16 22:47:41 +02:00
parent 1afef33efa
commit 402a2912b0
@@ -29,7 +29,11 @@ class WebsiteTitleTile extends HookConsumerWidget {
width: 24, width: 24,
), ),
contentPadding: EdgeInsets.zero, contentPadding: EdgeInsets.zero,
title: Text(info.title ?? 'Unknown Title'), title: Text(
info.title ?? 'Unknown Title',
maxLines: 6,
overflow: TextOverflow.ellipsis,
),
subtitle: Text(url.authority), subtitle: Text(url.authority),
); );
}, },