tabs
#822
Replies: 2 comments 3 replies
-
func main2() {
b := gi.NewAppBody("crypt tools")
tabs := gi.NewTabs(b)
tabs.Style(func(s *styles.Style) {
s.Direction = styles.Row
})
v1 := tabs.NewTab("v1")
x1 := gi.NewTabs(v1)
x1.NewTab("des")
x1.NewTab("rsa")
x1.NewTab("rsa")
x1.NewTab("rsa")
x1.NewTab("rsa")
x1.NewTab("rsa")
x1.NewTab("rsa")
x1.NewTab("rsa")
x1.NewTab("rsa")
x1.NewTab("rsa")
tabs.NewTab("v2")
tabs.NewTab("v3")
tabs.NewTab("v4")
tabs.NewTab("v5")
tabs.NewTab("v6")
b.NewWindow().Run().Wait()
} |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Re-arranging https://github.com/ddkwork/crypt the interface of the repository with core found that when specifying the orientation of the tab widget to be vertical, the orientation of the tab widget should not be changed after the window is widened
Beta Was this translation helpful? Give feedback.
All reactions