fyne-x icon indicating copy to clipboard operation
fyne-x copied to clipboard

Community extensions to the cross platform GUI in Go based on Material Design

Results 35 fyne-x issues
Sort by recently updated
recently updated
newest added

The following code results in a thin blank bar with no content. ```go type customtree struct { xwidget.FileTree } func NewCustomTree(root fyne.URI) *customtree { tree := &customtree{} tree.ExtendBaseWidget(tree) tree.Root =...

bug

It seems the responsive layout breaks the TextWordWrap of widget.Label. If I build the example [cmd](https://github.com/fyne-io/fyne-x/blob/master/cmd/responsive_layout/main.go) with go 1.18.1 on MacOS (ARM) it does not wrap the text if the...

bug

### Describe the bug: Out of index error on fast input ### To Reproduce: Steps to reproduce the behaviour: 1. Type four letters e.g "edin" quickly (difficult to get it...

bug

As the following code shows, the text in CompletionEntry cannot be edited. ### Screenshots ![图片](https://user-images.githubusercontent.com/6658943/161363773-da989168-4744-404c-b84c-f0a1becf3328.png) ### Steps to reproduce the behaviour: - Run the code below ```go package main import...

An extended Entry widget that sets the width, and limits entry of a given number of chars.

The function allows to bind when the user is navigating the menu entry. I'm pretty sure this isn't aligned up with the code style, so I'm opening the PR to...

The gorilla websocket library does not support webassembly. It would be nice to use https://github.com/nhooyr/websocket to have support for it. It would require test to make sure it also work...

I think it would be a great idea to create a sort of demo application (in `cmd/demo` perhaps) to showcase most of, if not all, of the useful additions that...

documentation
enhancement
good first issue

As a user of the fyne framework who wants to use some widgets or features from `fyne-x` I will have to deal with package naming conflicts a lot. Both `fyne`...

question