You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, sorry for my maybe stupid question, but im fighting this all the day ;)
What is the best way to stop current transfer? Im using very large files like 100-300gb and i want to add 'stop' functionality.
await ftpConnect.connect();
bool res = await ftpConnect.downloadFile(
fileName,
File(lista2![currentIndex]),
onProgress: (progressInPercent, totalReceived, fileSize) {
percent = progressInPercent;
received = totalReceived;
total = fileSize;
Im trying something like this all the day and even when its said Disconnected file is still downloading in bg till i stop the app.
Many thanks for help, greets!
The text was updated successfully, but these errors were encountered:
Hello, sorry for my maybe stupid question, but im fighting this all the day ;)
What is the best way to stop current transfer? Im using very large files like 100-300gb and i want to add 'stop' functionality.
await ftpConnect.connect();
bool res = await ftpConnect.downloadFile(
fileName,
File(lista2![currentIndex]),
onProgress: (progressInPercent, totalReceived, fileSize) {
percent = progressInPercent;
received = totalReceived;
total = fileSize;
Im trying something like this all the day and even when its said Disconnected file is still downloading in bg till i stop the app.
Many thanks for help, greets!
The text was updated successfully, but these errors were encountered: