Skip to content

Commit

Permalink
Update drive_explorer_item_tile.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagocarvalhodev committed Sep 9, 2024
1 parent a30434c commit 71f8b37
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions lib/pages/drive_detail/components/drive_explorer_item_tile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,17 @@ class DriveExplorerItemTile extends TableRowWidget {
padding: const EdgeInsets.only(right: 8),
child: Row(
children: [
Text(
name,
style: typography.paragraphNormal(
color: isHidden ? Colors.grey : null,
fontWeight: ArFontWeight.semiBold,
Flexible(
child: Text(
name,
style: typography.paragraphNormal(
color: isHidden ? Colors.grey : null,
fontWeight: ArFontWeight.semiBold,
),
overflow: TextOverflow.fade,
maxLines: 1,
softWrap: false,
),
overflow: TextOverflow.fade,
maxLines: 1,
softWrap: false,
),
if (dataTableItem is FileDataTableItem &&
dataTableItem.assignedNames != null &&
Expand Down

0 comments on commit 71f8b37

Please sign in to comment.