flutter_svg icon indicating copy to clipboard operation
flutter_svg copied to clipboard

Flutter Web CanvasKit Rendere View Not Displayed

Open parancode opened this issue 2 years ago • 1 comments

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.

parancode avatar Mar 21 '24 04:03 parancode

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
}

benjiwolff avatar Oct 12 '25 13:10 benjiwolff