mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-27 17:29:50 +08:00
FolderTreeView: Make the icon bigger
This commit is contained in:
@ -74,7 +74,12 @@ class FolderTileState extends State<FolderTile> {
|
|||||||
|
|
||||||
return Card(
|
return Card(
|
||||||
child: ListTile(
|
child: ListTile(
|
||||||
leading: Icon(Icons.folder),
|
leading: Container(
|
||||||
|
width: 48,
|
||||||
|
height: 48,
|
||||||
|
alignment: Alignment.center,
|
||||||
|
child: Icon(Icons.folder, size: 36),
|
||||||
|
),
|
||||||
title: Text(folderName),
|
title: Text(folderName),
|
||||||
subtitle: Text(subtitle),
|
subtitle: Text(subtitle),
|
||||||
trailing: trailling,
|
trailing: trailling,
|
||||||
|
Reference in New Issue
Block a user