Files
2024-06-03 22:23:28 +08:00

15 lines
203 B
Go

package widget
import (
"gioui.org/layout"
"gioui.org/widget/material"
)
type C = layout.Context
type D = layout.Dimensions
type T = material.Theme
type Widget interface {
Layout(gtx C, th *T) D
}