Fyne API fyne

fyne


import "fyne.io/fyne"

Usage

type Clipboard

type Clipboard interface {
	// Content returns the clipboard content
	Content() string
	// SetContent sets the clipboard content
	SetContent(content string)
}

Clipboard represents the system clipboard interface