From e8707b36f14ebc284561a61a458e42712415e111 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20M=C3=BCller?= Date: Wed, 13 May 2026 18:50:45 +0200 Subject: [PATCH] updated forward icon in message options and added scale limits to profile picture viewer --- lib/view/pages/talk/widgets/chat_message_options_dialog.dart | 2 +- lib/widget/large_profile_picture_view.dart | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/view/pages/talk/widgets/chat_message_options_dialog.dart b/lib/view/pages/talk/widgets/chat_message_options_dialog.dart index 29b3781..7fcc6c1 100644 --- a/lib/view/pages/talk/widgets/chat_message_options_dialog.dart +++ b/lib/view/pages/talk/widgets/chat_message_options_dialog.dart @@ -105,7 +105,7 @@ void showChatMessageOptionsDialog( ), if (canReact && (bubbleData.message != '{file}' || attachedFile != null)) ListTile( - leading: const Icon(Icons.forward_outlined), + leading: const Icon(Icons.shortcut_outlined), title: const Text('Weiterleiten'), onTap: () { Navigator.of(sheetCtx).pop(); diff --git a/lib/widget/large_profile_picture_view.dart b/lib/widget/large_profile_picture_view.dart index 6751bdd..9614413 100644 --- a/lib/widget/large_profile_picture_view.dart +++ b/lib/widget/large_profile_picture_view.dart @@ -11,6 +11,8 @@ class LargeProfilePictureView extends StatelessWidget { Widget build(BuildContext context) => Scaffold( appBar: AppBar(title: const Text('Profilbild')), body: PhotoView( + minScale: 0.5, + maxScale: 3.0, imageProvider: Image.network( 'https://${EndpointData().nextcloud().full()}/avatar/$username/1024', ).image,