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

@ -87,7 +87,7 @@ class _NewGroupState extends State<_NewGroup> {
decoration: InputDecoration(
border: OutlineInputBorder(),
labelText: L10n.of(context).optionalGroupName,
prefixIcon: Icon(Icons.people),
prefixIcon: Icon(Icons.people_outlined),
hintText: L10n.of(context).enterAGroupName),
),
),
@ -105,7 +105,7 @@ class _NewGroupState extends State<_NewGroup> {
foregroundColor: Colors.white,
backgroundColor: Theme.of(context).primaryColor,
onPressed: () => submitAction(context),
child: Icon(Icons.arrow_forward),
child: Icon(Icons.arrow_forward_outlined),
),
);
}