On my fyne GUI, I want to display text that can be copied by the user. So far, I'm using a (multi-line) 
CodePudding user response:
Labels are for display only, they afford no user interaction - this is something that web based apps have confused us about :). In Fyne apps we aim to have all user interaction hinted at, buttons and links are interactive, text is not. There are two possible approaches:
- put a “copy” button next to your label as has become common practice in many apps (for example password managers or YouTube)
- use a disabled Entry so the text can be interacted with but not edited.
CodePudding user response:
To complement andy.xyz's answer, here's an example of how a button can be used to copy a certain content to the clipboard. Fyne windows have a 
