{"id":30671529,"url":"https://github.com/programmerhasan/easyloading","last_synced_at":"2025-10-11T02:10:09.526Z","repository":{"id":310999014,"uuid":"1042072788","full_name":"ProgrammerHasan/easyloading","owner":"ProgrammerHasan","description":"A simple and customizable Flutter package for showing loading indicators.","archived":false,"fork":false,"pushed_at":"2025-08-21T14:08:37.000Z","size":437,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-08-21T14:49:18.616Z","etag":null,"topics":["easy-loading","flutter","loading"],"latest_commit_sha":null,"homepage":"","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ProgrammerHasan.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}},"created_at":"2025-08-21T12:50:08.000Z","updated_at":"2025-08-21T14:08:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"bc67e9c3-8c64-44c2-9078-fd1fedf7cd03","html_url":"https://github.com/ProgrammerHasan/easyloading","commit_stats":null,"previous_names":["programmerhasan/easyloading"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/ProgrammerHasan/easyloading","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProgrammerHasan%2Feasyloading","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProgrammerHasan%2Feasyloading/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProgrammerHasan%2Feasyloading/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProgrammerHasan%2Feasyloading/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ProgrammerHasan","download_url":"https://codeload.github.com/ProgrammerHasan/easyloading/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProgrammerHasan%2Feasyloading/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273068856,"owners_count":25039911,"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","status":"online","status_checked_at":"2025-09-01T02:00:09.058Z","response_time":120,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["easy-loading","flutter","loading"],"created_at":"2025-09-01T03:19:02.522Z","updated_at":"2025-10-11T02:10:04.482Z","avatar_url":"https://github.com/ProgrammerHasan.png","language":"Dart","readme":"\u003ch1 align=\"center\"\u003eEasy Loading.\u003c/h1\u003e\n\u003ch4 align=\"center\"\u003eA simple and customizable Flutter package for showing loading indicator. It helps developers display smooth and responsive loading overlays with minimal setup and easy-to-use APIs.\n.\u003c/h4\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://pub.dartlang.org/packages/easyloading\"\u003e\u003cimg src=\"https://img.shields.io/pub/v/easyloading.svg\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://github.com/programmerhasan/easyloading/raw/master/screenshots/02.png\" alt=\"Loading for Flutter\" width=\"120\" style=\"border-radius: 50%;\" /\u003e\n\u003c/p\u003e\n\n\n---\n\n## Features\n- Normal loading overlay with blur effect\n- Customizable `CircularProgressIndicator`\n- Progress loader with percentage display\n- Easy to show and dismiss\n\n---\n\n## Quickstart\n\n### Add dependency to your pubspec file\n\nAdd this to your `pubspec.yaml`:\n\n```yaml\ndependencies:\n  easyloading_plus: ^1.0.0\n```\nThen run:\n```\nflutter pub get\n```\n\n### Usage\n\nShow normal loader\n```agsl\nEasyLoading.show(context);\n```\nShow progress loader\n```agsl\nEasyLoading.showProgress(context, 50); // 50% complete\n```\nDismiss loader\n```agsl\nEasyLoading.dismiss();\n```\n\n### Example\n\nSee example/main.dart for a full working example.\n\n```dart\nimport 'dart:async';\nimport 'package:flutter/material.dart';\nimport 'package:easyloading_plus/easyloading_plus.dart';\n\nvoid main() {\n  runApp(const MyApp());\n}\n\nclass MyApp extends StatelessWidget {\n  const MyApp({super.key});\n\n  @override\n  Widget build(BuildContext context) {\n    return MaterialApp(\n      title: 'EasyLoading Example',\n      home: const HomePage(),\n    );\n  }\n}\n\nclass HomePage extends StatelessWidget {\n  const HomePage({super.key});\n\n  @override\n  Widget build(BuildContext context) {\n    return Scaffold(\n      appBar: AppBar(title: const Text(\"EasyLoading Example\")),\n      body: Center(\n        child: Column(\n          mainAxisAlignment: MainAxisAlignment.center,\n          children: [\n            ElevatedButton(\n              onPressed: () {\n                EasyLoading.show(context);\n                Future.delayed(const Duration(seconds: 3), () {\n                  EasyLoading.dismiss();\n                });\n              },\n              child: const Text(\"Show Loader\"),\n            ),\n            const SizedBox(height: 20),\n            ElevatedButton(\n              onPressed: () {\n                double percent = 0;\n                EasyLoading.showProgress(context, percent);\n\n                // simulate progress using Timer.periodic\n                Timer.periodic(const Duration(milliseconds: 300), (timer) {\n                  percent += 10;\n                  if (percent \u003e 100) {\n                    EasyLoading.dismiss();\n                    timer.cancel();\n                  } else {\n                    EasyLoading.showProgress(context, percent);\n                  }\n                });\n              },\n              child: const Text(\"Show Progress Loader\"),\n            ),\n          ],\n        ),\n      ),\n    );\n  }\n}\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprogrammerhasan%2Feasyloading","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprogrammerhasan%2Feasyloading","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprogrammerhasan%2Feasyloading/lists"}