24 lines
501 B
Go
24 lines
501 B
Go
//go:build mobile
|
|
|
|
package app
|
|
|
|
import (
|
|
"path/filepath"
|
|
|
|
"fyne.io/fyne/v2/internal/app"
|
|
)
|
|
|
|
// storagePath returns the location of the settings storage
|
|
func (p *preferences) storagePath() string {
|
|
return filepath.Join(p.app.storageRoot(), "preferences.json")
|
|
}
|
|
|
|
// storageRoot returns the location of the app storage
|
|
func (a *fyneApp) storageRoot() string {
|
|
return filepath.Join(app.RootConfigDir(), a.UniqueID())
|
|
}
|
|
|
|
func (p *preferences) watch() {
|
|
// no-op as we are in mobile simulation mode
|
|
}
|