Accessing underlying `winit` Window

I’m wondering if iced exposes the underlying winit Window somehow. Currently iced lacks some functionality that I need, i.e. using exclusive fullscreen for a window. Being able to directly fiddle with stuff under the hood would be nice.

I’m open to using ugly hacks, like getting a raw handle and somehow translating that into a winit handle. Not sure if that’s possible.

See window::run_with_handle.

Thank you, it’s better than nothing. But I’m not sure this is really winit’s internal Window handle? Just a platform-specific handle.

Unless there’s a way to convert the raw window handle into winit’s one?