Flutter - Save file visible to the user Flutter - Save file visible to the user flutter flutter

Flutter - Save file visible to the user


Use downloads_path_provider, on android it will save the file on Downloads.

for IOS, you need to use getApplicationDocumentsDirectoryfrom path_provider and add permissions on info.plist to make the folder visible to the user:

<key>LSSupportsOpeningDocumentsInPlace</key><true/><key>UIFileSharingEnabled</key><true/>