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
The problem
User clicks download button which runs the following code
final OpenResult result = await OpenFile.open(tmpPath!);
if (result.type == ResultType.done) {
successNotification?.call();
}
The ios bottom sheet comes up as expected
When user dismisses the ios bottom sheet by clicking the close(X) button (does NOT download the file)
The condition result.type == ResultType.done is true and success notification fires. User has not successfully downloaded the file. Why is the result done if user does or doesn't actually download the file?
The text was updated successfully, but these errors were encountered:
mariapapag
changed the title
BUG result.type == done before user actually downloads the file
BUG result.type == done before even if user does NOT actually download the file
Apr 6, 2022
mariapapag
changed the title
BUG result.type == done before even if user does NOT actually download the file
BUG result.type == done before even if user does NOT download the file
Apr 6, 2022
mariapapag
changed the title
BUG result.type == done before even if user does NOT download the file
BUG result.type == done even if user does NOT download the file
Apr 6, 2022
The problem
User clicks download button which runs the following code
The ios bottom sheet comes up as expected
When user dismisses the ios bottom sheet by clicking the close(X) button (does NOT download the file)
The condition
result.type == ResultType.done
is true and success notification fires. User has not successfully downloaded the file. Why is the result done if user does or doesn't actually download the file?The text was updated successfully, but these errors were encountered: