import "fyne.io/fyne/v2"
  

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