flutter_file_picker/go/README.md

24 lines
458 B
Markdown
Raw Normal View History

# file_picker
This Go package implements the host-side of the Flutter [file_picker](https://github.com/miguelpruivo/plugins_flutter_file_picker) plugin.
## Usage
Modify your applications `options.go`:
```
package main
import (
... other imports ....
2019-09-03 23:04:39 +00:00
file_picker "github.com/miguelpruivo/plugins_flutter_file_picker/go"
)
var options = []flutter.Option{
... other plugins and options ...
flutter.AddPlugin(&file_picker.FilePickerPlugin{}),
}
```