Added file upload in talk

This commit is contained in:
2023-06-08 19:06:59 +02:00
parent f5afd7eb5e
commit 213c815eee
7 changed files with 123 additions and 24 deletions

View File

@ -243,6 +243,6 @@ class _FilesState extends State<Files> {
}
var fileName = path.split(Platform.pathSeparator).last;
showDialog(context: context, builder: (context) => FileUploadDialog(localPath: path, remotePath: widget.path, fileName: fileName, triggerReload: () => _query()), barrierDismissible: false);
showDialog(context: context, builder: (context) => FileUploadDialog(localPath: path, remotePath: widget.path, fileName: fileName, onUploadFinished: () => _query()), barrierDismissible: false);
}
}