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
Im having a problem on android 10, I'm creating a File on Dart and download it using this plugin, it is stored correctly on Download directory, but i still need to navigate to: Internal Storage/Download to finally see the file.
Im using Google Files App. Any idea of what can be?
Here is the code: await FileDownloader.writeFile( content: const Base64Encoder().convert(bytes!), fileName: '${DateTime.now().toString()}.xlsx', extension: 'xlsx', );
And here is what I mean with navigate to internal storage directory
The text was updated successfully, but these errors were encountered:
the Downloads/ dir is indeed inside the internal storage,
this would be the same behavior on the OS's file explorer, the only difference is in the OS's file explorer you will already be inside the InternalStorage so you don't have to click it again
Hi! Great work.
Im having a problem on android 10, I'm creating a File on Dart and download it using this plugin, it is stored correctly on Download directory, but i still need to navigate to:
Internal Storage/Download
to finally see the file.Im using Google Files App. Any idea of what can be?
Here is the code:
await FileDownloader.writeFile( content: const Base64Encoder().convert(bytes!), fileName: '${DateTime.now().toString()}.xlsx', extension: 'xlsx', );
And here is what I mean with navigate to internal storage directory
The text was updated successfully, but these errors were encountered: