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

@ -189,7 +189,7 @@ class _EmotesSettingsState extends State<EmotesSettings> {
),
floatingActionButton: showSave
? FloatingActionButton(
child: Icon(Icons.save, color: Colors.white),
child: Icon(Icons.save_outlined, color: Colors.white),
onPressed: () async {
await _save(context);
setState(() {
@ -239,7 +239,7 @@ class _EmotesSettingsState extends State<EmotesSettings> {
title: _EmoteImagePicker(newMxcController),
trailing: InkWell(
child: Icon(
Icons.add,
Icons.add_outlined,
color: Colors.green,
size: 32.0,
),
@ -387,7 +387,7 @@ class _EmotesSettingsState extends State<EmotesSettings> {
? null
: InkWell(
child: Icon(
Icons.delete_forever,
Icons.delete_forever_outlined,
color: Colors.red,
size: 32.0,
),