News Score: Score the News, Sort the News, Rewrite the Headlines

GitHub - roblillack/spot: React-like desktop GUI toolkit for Go

Spot Spot is a simple, cross-platform, reactive GUI toolkit for Go using native widgets where available. It is designed to be easy to use and to provide a consistent API across different platforms. Example package main import ( "fmt" "github.com/roblillack/spot" "github.com/roblillack/spot/ui" ) func main() { ui.Init() spot.MountFn(func(ctx *spot.RenderContext) spot.Component { counter, setCounter := spot.UseState[int](ctx, 0) buttonTitle := "Click me!" if counter > 0 { buttonTitle = fmt.Sprintf...

Read more at github.com

© News Score  score the news, sort the news, rewrite the headlines