I have created an app in which user can create and save a text file in the local storage of Android. I have used path_provider package which gives <
As a compliment do @ni. answer, you must enable both keys. This is what it should look on:
Xcode (info.plist):
Info.plist on Xcode
Editor (info.plist):
LSSupportsOpeningDocumentsInPlace
UIFileSharingEnabled
Info in source:
In iOS 11 and later, if both this keys LSSupportsOpeningDocumentsInPlace and the UIFileSharingEnabled key are YES, the local file provider grants access to all the documents in the app’s Documents directory. These documents appear in the Files app, and in a document browser. Users can open and edit these document in place.
Source: Apple developer - iOS keys