duit icon indicating copy to clipboard operation
duit copied to clipboard

pure go, cross-platform, MIT-licensed ui toolkit for developers

Results 8 duit issues
Sort by recently updated
recently updated
newest added

Hi. I wasn't able to build your project, if using [gollvm](https://go.googlesource.com/gollvm/) compiler. > ~/golang_projects/duit$ go build -i -v -x > WORK=/tmp/go-build288395935 > # get https://proxy.golang.org/github.com/mjl-/go/@v/v0.0.0-20180429123528-fafada5f286e.info > # get https://proxy.golang.org/github.com/mjl-/go/@v/v0.0.0-20180429123528-fafada5f286e.info: 200...

```shell hellojukay@local test $ go env GO111MODULE="on" GOARCH="amd64" GOBIN="" GOCACHE="/home/hellojukay/.cache/go-build" GOENV="/home/hellojukay/.config/go/env" GOEXE="" GOFLAGS="" GOHOSTARCH="amd64" GOHOSTOS="linux" ``` ```shell package main import ( "flag" "io" "log" "os" "github.com/mjl-/duit" ) func check(err error,...

This is a patch that adds chorded cut + paste to the Edit and Field UIs. It's not the cleanest, but it's a fairly minimal set of changes that I...

I'm not sure if this behavior is intentional, so forgive me if it is, but clicking on an already-selected item in the List ui (for a non-multiple-select List) causes it...

It would be nice to search the currently selected text in Edit UIs with Button3, like in acme. I implemented this in ktye/duit@b5e969b This udates the cursor to the match...

As I understand, all widgets that should be referenced in another one, e.g. to change the text of a label, have to be declared upfront: ```go label := &duit.Label{Text: "status:...

I started a replacement for `draw` with a shiny backend: `https://github.com/ktye/duitdraw`. It runs on Windows, but is very basic at the moment. As I cannot test on other systems right...

The cursor seems to go ~ 1 px too far when arrowing down off the edge of a scrolled List; focus is lost without manual intervention. This is clear in...