clipboard.go 228 B

123456789
  1. package fyne
  2. // Clipboard represents the system clipboard interface
  3. type Clipboard interface {
  4. // Content returns the clipboard content
  5. Content() string
  6. // SetContent sets the clipboard content
  7. SetContent(content string)
  8. }