File sharing Manager + File Sharing Fixes #505

Merged
sarah merged 6 commits from filesharing-persist into trunk 2022-07-06 21:19:21 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit c397a9cdb7 - Show all commits

View File

@ -100,8 +100,8 @@ class _MessageViewState extends State<MessageView> {
var appBarButtons = <Widget>[];
if (showFileSharing) {
appBarButtons.add(IconButton(
splashRadius: Material.defaultSplashRadius / 2, icon: Icon(Icons.folder_shared), tooltip: AppLocalizations.of(context)!.conversationSettings, onPressed: _pushFileSharingSettings));
appBarButtons.add(
IconButton(splashRadius: Material.defaultSplashRadius / 2, icon: Icon(Icons.folder_shared), tooltip: AppLocalizations.of(context)!.manageSharedFiles, onPressed: _pushFileSharingSettings));
}
if (Provider.of<ContactInfoState>(context).isOnline()) {