FolderView: Make the icons the accent color

This commit is contained in:
Vishesh Handa
2019-12-05 18:07:49 +01:00
parent a39ed51abf
commit 4869c1bc70

View File

@ -78,7 +78,11 @@ class FolderTileState extends State<FolderTile> {
width: 48,
height: 48,
alignment: Alignment.center,
child: Icon(Icons.folder, size: 36),
child: Icon(
Icons.folder,
size: 36,
color: Theme.of(context).accentColor,
),
),
title: Text(folderName),
subtitle: Text(subtitle),