adam-gui/vendor/fyne.io/fyne/v2/app/app_goxjs.go

20 lines
402 B
Go
Raw Permalink Normal View History

2024-04-29 19:13:50 +02:00
//go:build !ci && (!android || !ios || !mobile) && (js || wasm || test_web_driver)
// +build !ci
// +build !android !ios !mobile
// +build js wasm test_web_driver
package app
import (
"fyne.io/fyne/v2"
)
func (app *fyneApp) SendNotification(_ *fyne.Notification) {
// TODO #2735
fyne.LogError("Sending notification is not supported yet.", nil)
}
func rootConfigDir() string {
return "/data/"
}