How do you handle tooltips in a multi-platform project?
I have a project where I would like to show tooltips in the desktop variant but not in the Android variant. In order to show a tooltip I have to wrap the relevant content in a TooltipArea but this code then won’t compile for Android where TooltipAreas are not supported. I can work around this by writing my own wrapper via expect/actual but is that really necessary? Isn’t there a more elegant solution?