{"id":15293076,"url":"https://github.com/yelodevs/yelo_icons","last_synced_at":"2025-03-24T12:40:28.752Z","repository":{"id":257804129,"uuid":"864271162","full_name":"Yelodevs/yelo_icons","owner":"Yelodevs","description":"A Flutter package for easily integrating custom SVG icons into your Flutter applications.","archived":false,"fork":false,"pushed_at":"2024-09-29T18:15:27.000Z","size":3136,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-01-29T17:44:37.647Z","etag":null,"topics":["dart","dart-package","flutter","flutter-package","flutter-plugin","fluttericons","svg"],"latest_commit_sha":null,"homepage":"https://yelodev.gitbook.io/yelo-icons/","language":"C++","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/Yelodevs.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":"linxford","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"thanks_dev":null,"custom":null}},"created_at":"2024-09-27T20:29:40.000Z","updated_at":"2024-09-29T18:15:30.000Z","dependencies_parsed_at":null,"dependency_job_id":"fc828173-4be4-4587-a90b-6c292142cbef","html_url":"https://github.com/Yelodevs/yelo_icons","commit_stats":null,"previous_names":["yelodevs/yelo_icons"],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Yelodevs%2Fyelo_icons","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Yelodevs%2Fyelo_icons/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Yelodevs%2Fyelo_icons/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Yelodevs%2Fyelo_icons/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Yelodevs","download_url":"https://codeload.github.com/Yelodevs/yelo_icons/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245273141,"owners_count":20588530,"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","dart-package","flutter","flutter-package","flutter-plugin","fluttericons","svg"],"created_at":"2024-09-30T16:39:28.843Z","updated_at":"2025-03-24T12:40:28.731Z","avatar_url":"https://github.com/Yelodevs.png","language":"C++","funding_links":["https://github.com/sponsors/linxford"],"categories":[],"sub_categories":[],"readme":"### Updated README for **Yelo Icons**:\n\n# Yelo Icons\n[![Pub](https://img.shields.io/pub/v/yelo_icons.svg)](https://pub.dartlang.org/packages/yelo_icons)\n\nA Flutter package for easily integrating custom SVG icons into your Flutter applications.\n\n# Support\n\n**YELO ICONS** is a package created for **Flutter/dart**. If you find it useful, please consider supporting it.\n\n\u003ctable align=\"center\" width=\"60%\" border=\"0\"\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\n      \u003ca title=\"GitHub Sponsors\" href=\"https://github.com/sponsors/linxford\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/alefragnani/oss-resources/master/images/button-become-a-sponsor-rounded-small.png\"/\u003e\u003c/a\u003e\n    \u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n## Features\n\n- Simple API for using custom SVG icons\n- Customizable icon size and color\n- Built on top of the `flutter_svg` package for efficient SVG rendering\n- **New in v1.0.3**: Added interaction handlers like `onTap`, `onPress`, `onLongPress` and more.\n\n## Getting started\n\nAdd `yelo_icons` to your `pubspec.yaml` file:\n\n```yaml\ndependencies:\n  yelo_icons: ^1.0.3\n```\n\nRun `flutter pub get` to install the package.\n\n## Usage\n\nImport the package in your Dart code:\n\n```dart\nimport 'package:yelo_icons/yelo_icons.dart';\n```\n\n### Basic Usage:\nUse the `Yelo.icon()` method to display an icon:\n\n```dart\nYelo.icon(\"bold/user\", size: 24, color: Colors.blue)\n```\n\n### With Interaction:\nYou can now add interaction events such as `onTap`, `onLongPress`, etc.\n\n```dart\nYelo.icon(\n  \"bold/user\",\n  size: 48,\n  color: Colors.red,\n  onTap: () {\n    print(\"User icon tapped!\");\n  },\n  onLongPress: () {\n    print(\"User icon long-pressed!\");\n  },\n)\n```\n\n### Example:\n\n```dart\nimport 'package:flutter/material.dart';\nimport 'package:yelo_icons/yelo_icons.dart';\n\nclass MyWidget extends StatelessWidget {\n  @override\n  Widget build(BuildContext context) {\n    return Column(\n      children: [\n        Yelo.icon(\"bold/user\", size: 48, color: Colors.red, onTap: () {\n          print('Icon tapped!');\n        }),\n        Yelo.icon(\"outline/settings\", size: 24, color: Colors.green),\n      ],\n    );\n  }\n}\n```\n\n## Additional information\n\nFor more information on using this package, please refer to the [API documentation](https://github.com/Yelodevs/yelo_icons/blob/main/YELO-API-DOC.md).\n\nTo report issues or contribute to the package, visit our [GitHub repository](https://github.com/Yelodevs/yelo_icons).\n\n## Contributing\n\nIf you have suggestions or find issues with the package, feel free to open an issue or a pull request on the [GitHub repository](https://github.com/Yelodevs/yelo_icons).\n\n## Credits\n- Kudos to all contributors who made this package what it is.\n\n## License\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyelodevs%2Fyelo_icons","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyelodevs%2Fyelo_icons","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyelodevs%2Fyelo_icons/lists"}