Fix overscrolling text on device folder page

This commit is contained in:
Vishnu Mohandas 2020-06-21 00:25:46 +05:30
parent 19a2e0e716
commit 1965c30dfa

View file

@ -96,13 +96,14 @@ class _DeviceFolderGalleryWidgetState extends State<DeviceFolderGalleryWidget> {
height: 150,
width: 150,
),
Padding(padding: EdgeInsets.all(2)),
Expanded(
Padding(
padding: const EdgeInsets.all(12.0),
child: Text(
folder.name,
style: TextStyle(
fontSize: 16,
),
overflow: TextOverflow.ellipsis,
),
),
],