Is there a way to get a select widget to "drop down" automatically? #4667
Replies: 4 comments
-
You can just call |
Beta Was this translation helpful? Give feedback.
-
Tapped() needs a parmeter (*fyne.PointEvent) I can't get past that requirement. I tried this ... fakedPoint := fyne.PointEvent{ but that causes a panic. |
Beta Was this translation helpful? Give feedback.
-
The Position is how far into the widget you want to tap (on a select that won't matter, as it's all one tappable area). |
Beta Was this translation helpful? Give feedback.
-
I got this to work. The delay in openSelections() is rather hacky, but it was needed. I include this for anyone following this thread with a similar problem in spite of the 'hack'.
|
Beta Was this translation helpful? Give feedback.
-
I have a select widget inside a popup window. I would like the select widget to "drop down/open the list" automatically. That way the user does not have to click (every time) on the widget just to see the select list.
Beta Was this translation helpful? Give feedback.
All reactions