{"id":13551024,"url":"https://github.com/andronasef/iconify_flutter","last_synced_at":"2025-04-13T05:07:14.190Z","repository":{"id":47354612,"uuid":"468529479","full_name":"andronasef/iconify_flutter","owner":"andronasef","description":"A flutter package that provides all icons you need","archived":false,"fork":false,"pushed_at":"2024-11-02T10:31:33.000Z","size":94447,"stargazers_count":137,"open_issues_count":9,"forks_count":27,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-13T05:07:00.367Z","etag":null,"topics":["dart","flutter","flutter-package","iconify","icons"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/iconify_flutter","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/andronasef.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}},"created_at":"2022-03-10T22:26:25.000Z","updated_at":"2025-04-03T00:50:50.000Z","dependencies_parsed_at":"2024-11-24T06:03:06.587Z","dependency_job_id":null,"html_url":"https://github.com/andronasef/iconify_flutter","commit_stats":{"total_commits":30,"total_committers":3,"mean_commits":10.0,"dds":"0.43333333333333335","last_synced_commit":"b8329d0ae91579792860fd91ebd392c7f7003f85"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andronasef%2Ficonify_flutter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andronasef%2Ficonify_flutter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andronasef%2Ficonify_flutter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andronasef%2Ficonify_flutter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andronasef","download_url":"https://codeload.github.com/andronasef/iconify_flutter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248665747,"owners_count":21142123,"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":["dart","flutter","flutter-package","iconify","icons"],"created_at":"2024-08-01T12:01:41.330Z","updated_at":"2025-04-13T05:07:14.170Z","avatar_url":"https://github.com/andronasef.png","language":"Dart","funding_links":[],"categories":["Dart"],"sub_categories":[],"readme":"Before starting ✋. I want to tell you that every star 🌟 added to my space shines my world and motivate me 💪 to make more awesome things like this one so please don't forget to give me a star and like the project.\n\n\u003ch1 align=\"center\"\u003eIconify Flutter\u003c/h1\u003e\n\u003ca href=\"https://andronasef.github.io/iconify_flutter/\"\u003e\u003cimg src=\"https://github.com/andronasef/iconify_flutter/raw/master/website/screenshots/1.png\"/\u003e\u003c/a\u003e\n\n\u003cdiv align=\"center\" style=\"margin-top:10px\"\u003e \n  \n[![likes](https://img.shields.io/pub/likes/iconify_flutter?logo=dart)](https://pub.dev/packages/iconify_flutter)\n[![GitHub stars](https://img.shields.io/github/stars/andronasef/iconify_flutter.svg?style=flat\u0026label=Star\u0026maxAge=3600\u0026logo=github\u0026color=success)](https://github.com/andronasef/iconify_flutter/)\n[![HitCount](https://hits.dwyl.com/andronasef/iconify_flutter.svg?style=flat)](https://pub.dev/packages/iconify_flutter)\n\n\u003c/div\u003e\n\n\u003cp align=\"center\"\u003eNot just another icon library. it's +100 open source iconsets to make your flutter apps more beautiful.\u003c/p\u003e\n\n## How to use? 🤔\n\nFirst of course you need to install it\n\n```console\n$ flutter pub add iconify_flutter\n```\n\nThen it as easy as this\n\n```dart\nimport 'package:iconify_flutter/iconify_flutter.dart'; // For Iconify Widget\nimport 'package:iconify_flutter/icons/zondicons.dart'; // for Non Colorful Icons\nimport 'package:colorful_iconify_flutter/icons/emojione.dart'; // for Colorful Icons\n....\n\n\nIconify(Zondicons.airplane)\nIconify(Emojione.baby)\n// as widgets\n```\n\n## Discover All Icons 🕵️\n\nTo explore all the icons, [Click Here](https://andronasef.github.io/iconify_flutter)\n\n## How to use svg as icon with iconify ✏️\n\n```dart\nimport 'package:iconify_flutter/iconify_flutter.dart';\n\n....\n\nconst String svgIcon =\n'\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"32\" height=\"32\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"\u003e\u003cpath fill=\"#000000\" d=\"M3 3h18v18H3z\"\u003e\u003c/path\u003e\u003c/svg\u003e\n' // svg file as string\n\nIconify(svgIcon) // as a widget\n```\n\n## Get list of all icons of specific icon set 📋\n\n```dart\nimport 'package:iconify_flutter/icons/zondicons.dart';\n\n...\nZondicons.iconsList // List of all icons of VS Code icon set\n```\n\n## Important Notes ❗\n\n- There is two diffrent versions of icons packages(package:colorful_iconify_flutter/icons/) colorful icons sets and (package:iconify_flutter/icons/) for un colorful icons sets. so please use the right package name\n\n- All icon sets are free but Some collections require attribution when used for commercial purposes. See [This List](https://github.com/iconify/icon-sets/blob/master/collections.md) of collections and their licenses.\n\n## Thanks to 🙏\n\n[@cyberalien](https://github.com/cyberalien) for his awesome icon framework [Iconify](https://github.com/iconify) which this package based on\n\n[@antfu](https://github.com/antfu) for his site [icones](https://github.com/antfu/icones)\n\n[@IconDesigners](https://github.com/iconify/icon-sets/blob/master/collections.md) who own icon sets\n\n[@You](https://www.reactiongifs.us/wp-content/uploads/2019/03/Thank-U.gif) for using this package and supporting me by sharing it among the flutter community\n\n## Dreams 💭\n\n- [x] Get first 100 stars on [github.com](https://github.com/andronasef/iconify_flutter/)\n- [ ] Get Flutter Favourite Badge\n- [x] Get first 100 likes on [pub.dev](https://pub.dev/packages/iconify_flutter/)\n- [x] Add colorful icons to iconify_flutter\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandronasef%2Ficonify_flutter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandronasef%2Ficonify_flutter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandronasef%2Ficonify_flutter/lists"}