Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions widget/label.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ func main() {

content := widget.NewLabel("text")

// Example Allow text selection
content.Selectable = true

// Example Update text
content.SetText("New text")

myWindow.SetContent(content)
myWindow.ShowAndRun()
}
Expand Down