implemented message forwarding and direct chat creation from group members, and added specialized share picker for forwarded content

This commit is contained in:
2026-05-09 20:39:19 +02:00
parent 151678f0fe
commit b422430994
3 changed files with 150 additions and 5 deletions
+12
View File
@@ -135,6 +135,18 @@ class AppRoutes {
);
}
static void openForwardMessageToChat(
BuildContext context, {
String? text,
RemoteFileRef? file,
}) {
pushScreen(
context,
withNavBar: false,
screen: ShareChatPicker.forMessageForward(text: text, file: file),
);
}
static void openInternalSaveToFolder(
BuildContext context,
RemoteFileRef file,