Skip to content

🖼️ Downloaded Image Viewer

Flocon captures and displays images downloaded over the network at runtime — such as user avatars, feed thumbnails, banners, and cached media assets.


Overview

Image Previewer

For every downloaded image, Flocon displays:

  • Thumbnail Preview: Direct visual preview rendered inside the desktop app
  • Origin URL: Full remote source address
  • Timing: Timestamp and load ordering

This is invaluable for debugging missing placeholders, CDN resolution failures, image compression artifacts, or unexpected network cache misses.


Setup with Coil 3

When using Coil, connect your ImageLoader with the Flocon-enabled OkHttp or Ktor client:

SingletonImageLoader.setSafe {
    ImageLoader.Builder(context = context)
        .components {
            add(
                coil3.network.okhttp.OkHttpNetworkFetcherFactory(
                    callFactory = { okHttpClient }, // okHttpClient configured with FloconOkhttpInterceptor
                )
            )
        }
        .build()
}