flutter_file_picker/go
Yoshiteru Kawahara 174a37d198 fixed the path :) 2021-06-03 20:02:37 +09:00
..
README.md fixed the path :) 2021-06-03 20:02:37 +09:00
file_darwin.go Unifies all platforms in a single plugin with addition of new features 2020-09-11 18:52:07 +01:00
file_linux.go Fixes directory pick on Linux 2020-09-28 13:45:17 +01:00
file_unsupported.go Unifies all platforms in a single plugin with addition of new features 2020-09-11 18:52:07 +01:00
file_windows.go Unifies all platforms in a single plugin with addition of new features 2020-09-11 18:52:07 +01:00
go.mod Unifies all platforms in a single plugin with addition of new features 2020-09-11 18:52:07 +01:00
go.sum Unifies all platforms in a single plugin with addition of new features 2020-09-11 18:52:07 +01:00
import.go.tmpl Unifies all platforms in a single plugin with addition of new features 2020-09-11 18:52:07 +01:00
plugin.go Fixed desktop plugin implementation 2020-12-10 20:05:05 +00:00

README.md

file_picker

This Go package implements the host-side of the Flutter file_picker plugin.

Usage

Modify your applications options.go:

package main

import (
	... other imports ....
	file_picker "github.com/miguelpruivo/flutter_file_picker/go"
)

var options = []flutter.Option{
	... other plugins and options ...

	flutter.AddPlugin(&file_picker.FilePickerPlugin{}),
}