prevent title overflow
This commit is contained in:
@@ -29,7 +29,11 @@ class WebsiteTitleTile extends HookConsumerWidget {
|
||||
width: 24,
|
||||
),
|
||||
contentPadding: EdgeInsets.zero,
|
||||
title: Text(info.title ?? 'Unknown Title'),
|
||||
title: Text(
|
||||
info.title ?? 'Unknown Title',
|
||||
maxLines: 6,
|
||||
overflow: TextOverflow.ellipsis,
|
||||
),
|
||||
subtitle: Text(url.authority),
|
||||
);
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user