fix(flutter_desktop): page name overflow in search (#7450)

This commit is contained in:
Richard Shiue 2025-03-04 17:17:42 +08:00 committed by GitHub
parent 3bf4f080c5
commit bbec60ff02
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,9 +27,11 @@ class RecentViewTile extends StatelessWidget {
children: [
icon,
const HSpace(6),
FlowyText(
view.nameOrDefault,
overflow: TextOverflow.ellipsis,
Expanded(
child: FlowyText(
view.nameOrDefault,
overflow: TextOverflow.ellipsis,
),
),
],
),