{"id":16957291,"url":"https://github.com/ueman/application_icon","last_synced_at":"2025-10-26T20:38:46.403Z","repository":{"id":37029373,"uuid":"282675532","full_name":"ueman/application_icon","owner":"ueman","description":"A simple Flutter widget which shows your application icon","archived":false,"fork":false,"pushed_at":"2025-06-25T20:31:29.000Z","size":204,"stargazers_count":8,"open_issues_count":10,"forks_count":5,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-25T21:32:08.328Z","etag":null,"topics":["application-icon","flutter","flutter-ui","hacktoberfest","widget"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/application_icon","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/ueman.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},"funding":{"github":["ueman"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":["https://paypal.me/JonasUekoetter","https://www.buymeacoffee.com/jonasuekoetter","https://uekoetter.dev/donate"]}},"created_at":"2020-07-26T15:14:55.000Z","updated_at":"2023-11-18T12:57:19.000Z","dependencies_parsed_at":"2023-01-20T10:48:02.073Z","dependency_job_id":"9413d4c4-f81b-4837-bf88-d15369b0dd5f","html_url":"https://github.com/ueman/application_icon","commit_stats":{"total_commits":30,"total_committers":3,"mean_commits":10.0,"dds":0.5,"last_synced_commit":"c2f44b4aabf9a99d0bd4d6f7334d510630e64796"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ueman/application_icon","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ueman%2Fapplication_icon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ueman%2Fapplication_icon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ueman%2Fapplication_icon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ueman%2Fapplication_icon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ueman","download_url":"https://codeload.github.com/ueman/application_icon/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ueman%2Fapplication_icon/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263227283,"owners_count":23433873,"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":["application-icon","flutter","flutter-ui","hacktoberfest","widget"],"created_at":"2024-10-13T22:18:45.062Z","updated_at":"2025-10-26T20:38:41.370Z","avatar_url":"https://github.com/ueman.png","language":"Dart","readme":"# Application Icon\n\n[![pub package](https://img.shields.io/pub/v/application_icon.svg)](https://pub.dev/packages/application_icon) [![likes](https://img.shields.io/pub/likes/application_icon)](https://pub.dev/packages/application_icon/score) [![popularity](https://img.shields.io/pub/popularity/application_icon)](https://pub.dev/packages/application_icon/score) [![pub points](https://img.shields.io/pub/points/application_icon)](https://pub.dev/packages/application_icon/score) [![GitHub Workflow Status](https://github.com/ueman/application_icon/workflows/build/badge.svg?branch=master)](https://github.com/ueman/application_icon/actions?query=workflow%3Abuild)\n\u003c!-- [![code coverage](https://codecov.io/gh/ueman/application_icon/branch/master/graph/badge.svg)](https://codecov.io/gh/ueman/application_icon) --\u003e\n\n# Platform support\n\n| Platform | Supported | Remarks |\n|----------|:---------:|---------|\n| Android  | ✅ | |\n| iOS      | ✅ | |\n| macOS    | ❌ | |\n| Linux    | ❌ | |\n| Windows  | ❌ | |\n| Web.     | ❌ | |\n\nThis package provides a widget which shows the application icon of your app.\n\nIt tries to use the highest resolution icon of your app icon on iOS.\nOn Android, on API levels equal or higher than [26 (Android O)](https://developer.android.com/about/versions/oreo/android-8.0)\nit tries to show the [Adaptive Icon](https://developer.android.com/guide/practices/ui_guidelines/icon_design_adaptive)\nif available. Otherwise, it just shows the normal application icon.\n\nIf an adaptive icon is available, it can be long pressed and dragged around.\nIt tries to mimic the dragging in the app launcher.\n\n## Setup\n\nFirst, you will need to add `application_icon` to your `pubspec.yaml`:\n\n```yaml\ndependencies:\n  flutter:\n    sdk: flutter\n  application_icon: x.y.z # use the latest version found on pub.dev\n```\n\nThen, run `flutter packages get` in your terminal.\n\n## Example\n\n```dart\nimport 'package:application_icon/application_icon.dart';\nimport 'package:flutter/material.dart';\n\nvoid main() {\n  runApp(MyApp());\n}\n\nclass MyApp extends StatelessWidget {\n  @override\n  Widget build(BuildContext context) {\n    return MaterialApp(\n      home: Scaffold(\n        appBar: AppBar(\n          title: const Text('Plugin example app'),\n        ),\n        body: Center(\n          // use AppIcon to show your application icon\n          child: AppIconImage(),\n        ),\n      ),\n    );\n  }\n}\n```\n\nIf you are not interested in displaying the app icon, you can also load\nthe image with the `AppIconInfo` class.\n\n\n# 📣 About the author\n\n- [![Twitter Follow](https://img.shields.io/twitter/follow/ue_man?style=social)](https://twitter.com/ue_man)\n- [![GitHub followers](https://img.shields.io/github/followers/ueman?style=social)](https://github.com/ueman)\n","funding_links":["https://github.com/sponsors/ueman","https://paypal.me/JonasUekoetter","https://www.buymeacoffee.com/jonasuekoetter","https://uekoetter.dev/donate"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fueman%2Fapplication_icon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fueman%2Fapplication_icon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fueman%2Fapplication_icon/lists"}