finds.dev← search

// the find

ComicSparks/pikapika

★ 8,189 · Dart · MIT · updated Jun 2026

A comic browser,support Android / iOS / MacOS / Windows / Linux.

Pikapika is a cross-platform manga client for the PicaComic platform, built with Flutter for UI and Go for the network/business logic layer, bridged via go-flutter on desktop and gomobile on mobile. It supports all five major platforms and handles offline downloads, encrypted archives, and wireless transfer between devices. This is a client for a specific content platform, not a general-purpose reader.

The Flutter+Go split is the most interesting technical decision here — Go handles the API, networking, and proxy logic while Flutter owns the UI, which means the heavy lifting runs as native Go rather than Dart isolates. The export/import system is genuinely useful: encrypted archives you can read directly via bundled HTML files, plus wireless LAN transfer between devices, covers the offline-first use case well. Android high-refresh-rate adaptation (90/120/144Hz) shows real attention to reader UX, not just checkbox cross-platform support. The per-feature config file pattern under lib/basic/config/ — one file per setting — keeps state scattered but at least avoids one 2000-line settings blob.

The build environment is pinned to Flutter 2.10.3 and Go 1.17 — Flutter 2.10 is from early 2022 and predates most of the current Flutter desktop stabilization work, so you're carrying over two years of framework debt. Worse, go-flutter (Hover) — the library bridging Go to Flutter on desktop — is a community project that never achieved official status and has been largely abandoned as Flutter shipped its own native desktop backends; this is a ticking clock on the Windows/macOS/Linux builds. The entire app is a client for one private service, so if PicaComic changes its API or goes offline, there's nothing here. Distribution rules in the README prohibit store releases and sharing the APK — which is fine as a personal preference but creates a discovery and update problem for anyone who actually wants to run this long-term.

View on GitHub →

// want more like this?

We dig through GitHub every week and send a few repos picked for what you actually care about — each with an honest take like this one.

Get finds in your inbox → Search again →