folder_desktop.go 414 B

1234567891011121314151617181920212223
  1. //go:build !ios && !android
  2. // +build !ios,!android
  3. package mobile
  4. import (
  5. "fyne.io/fyne/v2"
  6. )
  7. func canListURI(fyne.URI) bool {
  8. // no-op as we use the internal FileRepository
  9. return false
  10. }
  11. func createListableURI(fyne.URI) error {
  12. // no-op as we use the internal FileRepository
  13. return nil
  14. }
  15. func listURI(fyne.URI) ([]fyne.URI, error) {
  16. // no-op as we use the internal FileRepository
  17. return nil, nil
  18. }