app_goxjs.go 402 B

12345678910111213141516171819
  1. //go:build !ci && (!android || !ios || !mobile) && (js || wasm || test_web_driver)
  2. // +build !ci
  3. // +build !android !ios !mobile
  4. // +build js wasm test_web_driver
  5. package app
  6. import (
  7. "fyne.io/fyne/v2"
  8. )
  9. func (app *fyneApp) SendNotification(_ *fyne.Notification) {
  10. // TODO #2735
  11. fyne.LogError("Sending notification is not supported yet.", nil)
  12. }
  13. func rootConfigDir() string {
  14. return "/data/"
  15. }