adam-gui/vendor/fyne.io/fyne/v2/driver/mobile/driver.go

11 lines
278 B
Go
Raw Normal View History

2024-04-29 19:13:50 +02:00
// Package mobile provides desktop specific mobile functionality.
package mobile
// Driver represents the extended capabilities of a mobile driver
//
// Since: 2.4
type Driver interface {
// GoBack asks the OS to go to the previous app / activity, where supported
GoBack()
}