design: Use outlined icons
This commit is contained in:
parent
4730edcec2
commit
67614205c9
27 changed files with 112 additions and 101 deletions
|
|
@ -94,8 +94,12 @@ class _EncryptionButtonState extends State<EncryptionButton> {
|
|||
color = null;
|
||||
}
|
||||
return IconButton(
|
||||
icon: Icon(widget.room.encrypted ? Icons.lock : Icons.lock_open,
|
||||
size: 20, color: color),
|
||||
icon: Icon(
|
||||
widget.room.encrypted
|
||||
? Icons.lock_outlined
|
||||
: Icons.lock_open_outlined,
|
||||
size: 20,
|
||||
color: color),
|
||||
onPressed: _enableEncryptionAction,
|
||||
);
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue