{"id":32301844,"url":"https://github.com/farhansadikgalib/any_image_view","last_synced_at":"2026-02-20T23:01:43.012Z","repository":{"id":239384212,"uuid":"799269841","full_name":"farhansadikgalib/any_image_view","owner":"farhansadikgalib","description":"A special Flutter package for displaying all kinds of images, including jpg, png, SVG, lottie, and XFile, including network images with caching. Customizing options for image properties and interaction makes it simple to integrate into your Flutter projects.","archived":false,"fork":false,"pushed_at":"2026-01-15T17:29:14.000Z","size":5936,"stargazers_count":7,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-01-15T20:08:42.348Z","etag":null,"topics":["flutter","imageview","lottie","svg"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/any_image_view","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/farhansadikgalib.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-05-11T16:20:16.000Z","updated_at":"2026-01-15T17:29:20.000Z","dependencies_parsed_at":"2024-05-12T02:22:22.067Z","dependency_job_id":"21f2bf6d-9140-4523-9917-8fe364dae24b","html_url":"https://github.com/farhansadikgalib/any_image_view","commit_stats":null,"previous_names":["farhansadikgalib/any_image_view"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/farhansadikgalib/any_image_view","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/farhansadikgalib%2Fany_image_view","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/farhansadikgalib%2Fany_image_view/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/farhansadikgalib%2Fany_image_view/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/farhansadikgalib%2Fany_image_view/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/farhansadikgalib","download_url":"https://codeload.github.com/farhansadikgalib/any_image_view/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/farhansadikgalib%2Fany_image_view/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29667119,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-20T19:49:36.704Z","status":"ssl_error","status_checked_at":"2026-02-20T19:44:05.372Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["flutter","imageview","lottie","svg"],"created_at":"2025-10-23T05:45:55.413Z","updated_at":"2026-02-20T23:01:43.006Z","avatar_url":"https://github.com/farhansadikgalib.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🖼️ Any Image View\n\n[![Pub Version](https://img.shields.io/pub/v/any_image_view.svg)](https://pub.dev/packages/any_image_view)\n[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://raw.githubusercontent.com/farhansadikgalib/any_image_view/main/raw/banner.png\" alt=\"Any Image View\"/\u003e\n\u003c/p\u003e\n\n**One widget for all image types** — Network, Assets, SVG, Lottie, XFile with built-in shimmer loading \u0026 error handling.\n\n## Installation\n\n```yaml\ndependencies:\n  any_image_view: ^2.0.0\n```\n\n## Usage\n\n```dart\nimport 'package:any_image_view/any_image_view.dart';\n\n// Network\nAnyImageView(imagePath: 'https://example.com/image.jpg', height: 200, width: 200)\n\n// Asset\nAnyImageView(imagePath: 'assets/image.png', height: 200, width: 200)\n\n// SVG\nAnyImageView(imagePath: 'assets/icon.svg', height: 40, width: 40)\n\n// Lottie\nAnyImageView(imagePath: 'assets/animation.json', height: 100, width: 100)\n\n// XFile (Image Picker)\nAnyImageView(imagePath: xFile, height: 200, width: 200)\n\n// Circular Avatar\nAnyImageView(imagePath: url, height: 80, width: 80, shape: BoxShape.circle)\n\n// With Options\nAnyImageView(\n  imagePath: url,\n  height: 200,\n  width: 200,\n  fit: BoxFit.cover,\n  borderRadius: BorderRadius.circular(12),\n  enableZoom: true,\n  placeholderWidget: CircularProgressIndicator(),\n  errorWidget: Icon(Icons.error),\n)\n```\n\n## Parameters\n\n| Parameter | Type | Description |\n|-----------|------|-------------|\n| `imagePath` | `Object?` | URL, asset path, or XFile |\n| `height` / `width` | `double?` | Dimensions |\n| `fit` | `BoxFit?` | Image fit (default: cover) |\n| `shape` | `BoxShape` | rectangle or circle |\n| `borderRadius` | `BorderRadius?` | Rounded corners |\n| `enableZoom` | `bool` | Pinch-to-zoom (default: false) |\n| `placeholderWidget` | `Widget?` | Custom loader |\n| `errorWidget` | `Widget?` | Custom error |\n| `httpHeaders` | `Map?` | Auth headers |\n\n## Supported Formats\n\nPNG, JPG, WebP, GIF, SVG, Lottie (.json), TIFF, RAW, HEIC, BMP, ICO\n\n## Platform Support\n\n✅ Android · ✅ iOS · ✅ Web · ✅ macOS · ✅ Windows · ✅ Linux\n\n---\n\n\u003cp align=\"center\"\u003e\n  Made with ❤️ by \u003ca href=\"https://farhansadikgalib.com\"\u003eFarhan Sadik Galib\u003c/a\u003e\n\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffarhansadikgalib%2Fany_image_view","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffarhansadikgalib%2Fany_image_view","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffarhansadikgalib%2Fany_image_view/lists"}