mirror of
https://github.com/go-gost/gost-plus.git
synced 2024-08-11 17:43:16 +00:00
15 lines
203 B
Go
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
|
|
}
|