design: Use outlined icons

This commit is contained in:
Christian Pauly 2020-12-06 10:31:35 +01:00
commit 67614205c9
27 changed files with 112 additions and 101 deletions

View file

@ -70,7 +70,7 @@ class _SettingsStyleState extends State<SettingsStyle> {
fit: BoxFit.cover,
),
trailing: Icon(
Icons.delete_forever,
Icons.delete_forever_outlined,
color: Colors.red,
),
onTap: () => deleteWallpaperAction(context),
@ -78,7 +78,7 @@ class _SettingsStyleState extends State<SettingsStyle> {
Builder(builder: (context) {
return ListTile(
title: Text(L10n.of(context).changeWallpaper),
trailing: Icon(Icons.wallpaper),
trailing: Icon(Icons.wallpaper_outlined),
onTap: () => setWallpaperAction(context),
);
}),