EA vijay
EA vijay

Reputation: 206

The widget displaying over htmlelementview is not detecting gestures in flutter?

I have placed a dropdown button in appbar which shows a dropdown list. In the body of my page, i am displaying a iframewidget using htmlelementview . When i click the dropdown button,the dropdown list is displaying over the iframe widget(which is the body of the page) and if i select the option from my dropdown list,there is no gesture detection(because it is displaying over the iframe) . How to solve this?

Upvotes: 1

Views: 1236

Answers (1)

Phake
Phake

Reputation: 1349

You can wrap the dropdown list in a PointerInterceptor from pub.dev: pointer_interceptor

Upvotes: 4

Related Questions