From 0cdf18df79f24a5d3abdfaadf375b86374f1b06d Mon Sep 17 00:00:00 2001 From: Sarah Jamie Lewis Date: Fri, 1 Oct 2021 07:57:29 -0700 Subject: [PATCH] fmt --- lib/views/messageview.dart | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/lib/views/messageview.dart b/lib/views/messageview.dart index c8484b84..ea84f169 100644 --- a/lib/views/messageview.dart +++ b/lib/views/messageview.dart @@ -84,18 +84,18 @@ class _MessageViewState extends State { var appBarButtons = []; if (Provider.of(context).isOnline()) { if (Platform.isAndroid == false) { - appBarButtons.add(IconButton( - icon: Icon(Icons.attach_file, size: 24), - tooltip: AppLocalizations.of(context)!.tooltipSendFile, - onPressed: _showFilePicker, - )); - } appBarButtons.add(IconButton( - icon: Icon(CwtchIcons.send_invite, size: 24), - tooltip: AppLocalizations.of(context)!.sendInvite, - onPressed: () { - _modalSendInvitation(context); - })); + icon: Icon(Icons.attach_file, size: 24), + tooltip: AppLocalizations.of(context)!.tooltipSendFile, + onPressed: _showFilePicker, + )); + } + appBarButtons.add(IconButton( + icon: Icon(CwtchIcons.send_invite, size: 24), + tooltip: AppLocalizations.of(context)!.sendInvite, + onPressed: () { + _modalSendInvitation(context); + })); } appBarButtons.add(IconButton( icon: Provider.of(context, listen: false).isGroup == true ? Icon(CwtchIcons.group_settings_24px) : Icon(CwtchIcons.peer_settings_24px),