{"id":13552052,"url":"https://github.com/InvincibleZeal/progressive_image","last_synced_at":"2025-04-03T02:32:49.730Z","repository":{"id":51664622,"uuid":"214582310","full_name":"InvincibleZeal/progressive_image","owner":"InvincibleZeal","description":"A flutter widget that progressively loads large images using Low-Quality Image Placeholders.","archived":false,"fork":false,"pushed_at":"2023-03-07T17:47:39.000Z","size":341,"stargazers_count":38,"open_issues_count":7,"forks_count":14,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-03-27T03:04:30.227Z","etag":null,"topics":["flutter","flutter-examples","flutter-package","flutter-plugins","flutter-widget"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/progressive_image","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/InvincibleZeal.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}},"created_at":"2019-10-12T05:15:54.000Z","updated_at":"2025-02-13T07:59:40.000Z","dependencies_parsed_at":"2024-01-19T06:56:29.789Z","dependency_job_id":"3d4fb665-722c-43f7-bd27-a006ba082838","html_url":"https://github.com/InvincibleZeal/progressive_image","commit_stats":{"total_commits":14,"total_committers":5,"mean_commits":2.8,"dds":0.3571428571428571,"last_synced_commit":"c1e052624d682885248f30d61db2d8308904bfe7"},"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/InvincibleZeal%2Fprogressive_image","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/InvincibleZeal%2Fprogressive_image/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/InvincibleZeal%2Fprogressive_image/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/InvincibleZeal%2Fprogressive_image/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/InvincibleZeal","download_url":"https://codeload.github.com/InvincibleZeal/progressive_image/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246925551,"owners_count":20855900,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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","flutter-examples","flutter-package","flutter-plugins","flutter-widget"],"created_at":"2024-08-01T12:01:58.211Z","updated_at":"2025-04-03T02:32:48.982Z","avatar_url":"https://github.com/InvincibleZeal.png","language":"Dart","readme":"# Progressive Image\n\nA flutter widget which progressively loads large images using Low Quality Image Placeholders.\n\n## Snapshots\n\n\u003cp align=\"middle\"\u003e\n  \u003cimg src=\"https://i.imgur.com/hKbYIQ6.gif\" width=\"300\" alt=\"\" /\u003e\n  \u003cimg src=\"https://i.imgur.com/sr7N8zi.gif\" width=\"300\" alt=\"\" /\u003e\n\u003c/p\u003e\n\n## Features\n\n- Displays placeholder and thumbnail image until the target Image loads.\n- Smooth Fade-in animations for preventing immediate image popups on load.\n- Blur effect for low resolution thumbnail to prevent the pixelated view.\n- Effectively resolves thumbnail image before the target image starts to fetch for quick first impression.\n- Placeholder widgets instead of placeholder images can now be added in `v2.0.0`\n\n## Installing\n\nFollowing steps will help you add this library as a dependency in your flutter project.\n\n- In the `pubspec.yaml` file in the root of your project\n\n```yaml\ndependencies:\n  progressive_image: ^2.0.0\n```\n\n- Run the following command to get packages:\n\n```bash\n$ flutter packages get\n```\n\n- Import the package in your project file:\n\n```dart\nimport 'package:progressive_image/progressive_image.dart';\n```\n\n## Usage\n\nFor a more detailed look at how to use this library, there is a sweet project in the `example` directory and various examples can be found [here](example/README.md)\n\nA simple example usage of the `ProgressiveImage` widget is shown below:\n\n```dart\nimport 'package:flutter/material.dart';\nimport 'package:progressive_image/progressive_image.dart';\n\nvoid main() =\u003e runApp(MyApp());\n\nclass MyApp extends StatelessWidget {\n  // This widget is the root of your application.\n  @override\n  Widget build(BuildContext context) {\n    return MaterialApp(\n      home: Scaffold(\n        appBar: AppBar(title: Text('Progressive Image Example')),\n        body: ProgressiveImageExample(),\n      ),\n    );\n  }\n}\n\nclass ProgressiveImageExample extends StatelessWidget {\n    @override\n    Widget build(BuildContext context) {\n        return Container(\n            child: ProgressiveImage(\n                placeholder: AssetImage('assets/placeholder.jpg'),\n                // size: 1.87KB\n                thumbnail: NetworkImage('https://i.imgur.com/7XL923M.jpg'),\n                // size: 1.29MB\n                image: NetworkImage('https://i.imgur.com/xVS07vQ.jpg'),\n                height: 300,\n                width: 500,\n            ),\n        );\n    }\n}\n\n```\n","funding_links":[],"categories":["Dart"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FInvincibleZeal%2Fprogressive_image","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FInvincibleZeal%2Fprogressive_image","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FInvincibleZeal%2Fprogressive_image/lists"}