Commit 0cb90e07 by Nayan

Modified README.md and delete LICENCE

parent 35e64aed
TODO: Add your license here.
# open_file_manager
A flutter plugin to open default file manager app
A flutter plugin to open default file manager app.
## Getting Started
## How it works?
This project is a starting point for a Flutter
[plug-in package](https://flutter.dev/developing-packages/),
a specialized package that includes platform-specific implementation code for
Android and/or iOS.
### Android
Plugin will shows the available file manager apps in bottom popup and you can select one app to open.
That app will open with `Download` folder that is public folder.
For help getting started with Flutter development, view the
[online documentation](https://flutter.dev/docs), which offers tutorials,
samples, guidance on mobile development, and a full API reference.
### iOS
Plugin will open `Files` app in iOS. you need to add following code snippet in `Info.plist` to view your app folder inside `On My iPhone`.
Also you need to save at least one file to view your app's folder
```xml
<key>UISupportsDocumentBrowser</key>
<true/>
```
## Usage
It's a very simple to use. there is only one line of code!!!
```dart
import 'package:open_file_manager/open_file_manager.dart'
openFileManager();
```
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment