flutter_svg
flutter_svg copied to clipboard
Flutter Web CanvasKit Rendere View Not Displayed
I used HtmlElementView with ui.platformViewRegistry.registerViewFactory.
However, starting from the 8th HtmlElementView, the z-index becomes abnormal and the Flutter view moves behind it. I tried various options to solve this, but the problem persists.
I had the same issue. This is the Caddy workaround for my Gitea container registry with ROOT_URL=https://192.168.0.1/gitea.
192.168.0.1 {
tls internal
# gitea container registry
handle /v2* {
uri replace ^ gitea/
reverse_proxy 192.168.0.1:3100
}
# gitea
handle_path /gitea/* {
reverse_proxy 192.168.0.1:3100
}
respond 404
}