flutter_file_picker/go/file_unsupported.go

20 lines
416 B
Go

// +build !darwin,!linux,!windows
package file_picker
import (
"github.com/pkg/errors"
)
func fileFilter(method string) (string, error) {
return "", errors.New("platform unsupported")
}
func fileDialog(title string, filter string) (string, error) {
return "", errors.New("platform unsupported")
}
func dirDialog(title string, filter string) (string, error) {
return "", errors.New("platform unsupported")
}