Description
Checklist
- I have searched the issue tracker for open issues that relate to the same feature, before opening a new one.
- This issue only relates to a single feature. I will open new issues for any other features.
Is your feature request related to a problem?
We are currently parsing the string of navigator.platform
to judge if we are running on mobile. This is not fool-proof as it depends a lot on which browser is used and so on. It has been deprecated in favour of navigator.userAgentData?.mobile
which is a simple boolean telling us if we are running on mobile. Using the value would allow us to enable our mobile mode correctly on more devices (not sure if Linux mobile is working on our current setup even) but the downside is that userAgentData only is available over HTTPS and only in Chrome-based browsers as of today.
Related to #4754
Is it possible to construct a solution with the existing API?
Yes. See
fyne/internal/driver/glfw/device_wasm.go
Line 12 in 9677021
Describe the solution you'd like to see.
Use the new API when available but fall back to parsing userAgent platform otherwise.