M.Sz.

Results 484 comments of M.Sz.

So in order to do so we at least need to export (or even add) SetPlatform method

We can add that stuff to cmd/gmdeploy

full code to reproduce: ```golang package main import ( "os/exec" "github.com/AllenDang/giu" g "github.com/AllenDang/giu" ) func loop() { g.SingleWindow().Layout( g.Button("sync").OnClick(click), ) } func click() { cmd := exec.Command("ls") cmd.Start() g.Msgbox("Info", "test")...

Well so let me test again

well, so the following code works for me: ```golang package main import ( "os/exec" "github.com/AllenDang/giu" g "github.com/AllenDang/giu" ) var shouldCommandFail bool func loop() { g.SingleWindow().Layout( g.Row( g.Checkbox("Value of exit code:...

something like that: ```golang package main import ( "os" "os/exec" "github.com/AllenDang/giu" g "github.com/AllenDang/giu" ) var ( shouldCommandFail bool isButtonLocked bool ) func loop() { g.SingleWindow().Layout( g.Row( g.Checkbox("Value of exit code:...

no problem! In case of any other issues, feel free to ping me again :-)

@93Alliance I'm able to set these styles. Just put imgui.StyleColors...() call before wnd.Run call: ```golang package main import ( g "github.com/AllenDang/giu" "github.com/AllenDang/imgui-go" ) var content string func loop() { g.SingleWindow().Layout(...

What do you mean by"Style color light is different"? Imo it # would fine - app turns white

@93Alliance any updates? Maybe you should open a new issue for styles problem