Jim Orcheson
Jim Orcheson
First of all, I am new to nana, and I agree that having a single, official source for nana documentation would be useful. qPCR4vir - I think this is a...
So at this point, there is nothing I can do? I guess I can live with losing the 0.5% of all browser users (the percentage of people who use Firefox...
I have attempted to create a BoundSelect widget (in fyne-x) which binds both the Selected and Options fields by basing it on the Select widget (copying and modifying functionality). There...
As I mentioned, I did a lot of copying of Select widget code, which appears to be entirely the wrong approach. I will try a different method. I tried this...
## BoundSelect Widget I have created a BoundSelect widget with the following functionality: ```go func NewBoundSelectWithData(options *binding.StringList, selection *binding.String) *BoundSelect func (b *BoundSelect) BindOptions(opts *binding.StringList) func (b *BoundSelect) BindSelected(selection *binding.String)...
> I'm not sure if it was covered before, but the core binding is to support the main data item for a widget, using "...WithData" - i.e. `NewSelectWithData`. > >...
```go func NewSelectWithData(options []string, data binding.String) *Select func (s *Select) Bind(data binding.String) func (s *Select) Unbind() ``` were added to the Select widget in fyne version 2.6. What remains to...
> > implies that there should be a new widget in fyne-x. > > I think that was more meaning a database widget rather than a clone of Select. I...
OK then. How about a trailingText bool field? False (the default) means TextAlignmentLeading and true means TextAlignmentTrailing.
@andydotxyz There is a generic Entry widget on fyne and a more specialized NumericalEntry widget on fyne-x. In a short discussion we had on Slack about text alignment in Entry...