1
0
Fork 0
mirror of https://github.com/diamondburned/cchat-gtk.git synced 2024-10-31 19:44:23 +00:00
cchat-gtk/internal/ui/header.go

15 lines
205 B
Go

package ui
import "github.com/gotk3/gotk3/gtk"
type header struct {
*gtk.Box
}
func newHeader() *header {
box, _ := gtk.BoxNew(gtk.ORIENTATION_VERTICAL, 0)
box.Show()
// TODO
return &header{box}
}