textfield linecount

This commit is contained in:
Fabian Freund
2025-11-30 08:07:11 +01:00
parent a2f4cf2cb1
commit d7af030147
3 changed files with 13 additions and 1 deletions
@@ -136,7 +136,11 @@ class ContainerSitesScreen extends HookConsumerWidget {
return ListTile(
leading: UrlIcon([site], iconSize: 20),
title: Text(site.host),
title: Text(
site.host,
maxLines: 3,
overflow: TextOverflow.ellipsis,
),
subtitle: Text(site.toString()),
trailing: IconButton(
onPressed: () {