{"id":21196344,"url":"https://github.com/davigmacode/flutter_wx_avatar","last_synced_at":"2026-04-24T18:41:43.720Z","repository":{"id":231338037,"uuid":"781487141","full_name":"davigmacode/flutter_wx_avatar","owner":"davigmacode","description":"Provides an intuitive and developer-friendly API, allowing you to effortlessly tailor avatars to your exact requirements.","archived":false,"fork":false,"pushed_at":"2024-08-11T03:25:42.000Z","size":402,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-20T18:32:54.792Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/wx_avatar","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/davigmacode.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},"funding":{"github":["davigmacode"],"patreon":null,"open_collective":null,"ko_fi":"davigmacode","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":["https://www.buymeacoffee.com/davigmacode"]}},"created_at":"2024-04-03T13:29:54.000Z","updated_at":"2024-12-17T07:14:59.000Z","dependencies_parsed_at":"2024-04-07T03:22:12.573Z","dependency_job_id":"54566267-ca52-4752-966a-9e8b35991437","html_url":"https://github.com/davigmacode/flutter_wx_avatar","commit_stats":null,"previous_names":["davigmacode/flutter_wx_avatar"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/davigmacode/flutter_wx_avatar","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davigmacode%2Fflutter_wx_avatar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davigmacode%2Fflutter_wx_avatar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davigmacode%2Fflutter_wx_avatar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davigmacode%2Fflutter_wx_avatar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/davigmacode","download_url":"https://codeload.github.com/davigmacode/flutter_wx_avatar/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davigmacode%2Fflutter_wx_avatar/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32236744,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T13:21:15.438Z","status":"ssl_error","status_checked_at":"2026-04-24T13:21:15.005Z","response_time":64,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-11-20T19:35:38.562Z","updated_at":"2026-04-24T18:41:39.023Z","avatar_url":"https://github.com/davigmacode.png","language":"Dart","funding_links":["https://github.com/sponsors/davigmacode","https://ko-fi.com/davigmacode","https://www.buymeacoffee.com/davigmacode"],"categories":[],"sub_categories":[],"readme":"[![Pub Version](https://img.shields.io/pub/v/wx_avatar)](https://pub.dev/packages/wx_avatar) ![GitHub](https://img.shields.io/github/license/davigmacode/flutter_wx_avatar) [![GitHub](https://badgen.net/badge/icon/buymeacoffee?icon=buymeacoffee\u0026color=yellow\u0026label)](https://www.buymeacoffee.com/davigmacode) [![GitHub](https://badgen.net/badge/icon/ko-fi?icon=kofi\u0026color=red\u0026label)](https://ko-fi.com/davigmacode)\n\nProvides an intuitive and developer-friendly API, allowing you to effortlessly tailor avatars to your exact requirements.\n\n[![Preview](https://github.com/davigmacode/flutter_wx_avatar/raw/main/media/preview.jpg)](https://davigmacode.github.io/flutter_wx_avatar)\n\n[Demo](https://davigmacode.github.io/flutter_wx_avatar)\n\n## Usage\n\nTo read more about classes and other references used by `wx_avatar`, see the [API Reference](https://pub.dev/documentation/wx_avatar/latest/).\n\n```dart\nWrap(\n  spacing: 20,\n  children: [\n    const WxAvatar(\n      image: NetworkImage('https://i.pravatar.cc/50?u=2'),\n    ),\n    const WxAvatar(\n      elevation: 3.0,\n      backgroundColor: Colors.red,\n      foregroundStyle: TextStyle(\n        fontSize: 16,\n        fontWeight: FontWeight.bold,\n        color: Colors.amber,\n      ),\n      child: Text('Wx'),\n    ),\n    WxAvatar(\n      borderStyle: BorderStyle.solid,\n      borderColor: Colors.black54,\n      borderWidth: 2,\n      backgroundColor: Theme.of(context).colorScheme.surface,\n      foregroundColor: Colors.black87,\n      foregroundSize: 40,\n      child: const Icon(Icons.person),\n    ),\n  ],\n)\n\nWrapper(\n  title: 'Circle Shape',\n  child: Wrap(\n    spacing: 20,\n    children: [\n      const WxAvatar.circle(\n        image: NetworkImage('https://i.pravatar.cc/50?u=2'),\n      ),\n      const WxAvatar.circle(\n        elevation: 3.0,\n        backgroundColor: Colors.red,\n        child: Text('Wx'),\n      ),\n      WxAvatar.circle(\n        borderStyle: BorderStyle.solid,\n        borderColor: Colors.black54,\n        borderWidth: 2,\n        backgroundColor: Theme.of(context).colorScheme.surface,\n        foregroundColor: Colors.black87,\n        foregroundSize: 30,\n        child: const Icon(Icons.person),\n      ),\n    ],\n  ),\n)\n```\n\n## Sponsoring\n\n\u003ca href=\"https://www.buymeacoffee.com/davigmacode\" target=\"_blank\"\u003e\u003cimg src=\"https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png\" alt=\"Buy Me A Coffee\" height=\"45\"\u003e\u003c/a\u003e\n\u003ca href=\"https://ko-fi.com/davigmacode\" target=\"_blank\"\u003e\u003cimg src=\"https://storage.ko-fi.com/cdn/brandasset/kofi_s_tag_white.png\" alt=\"Ko-Fi\" height=\"45\"\u003e\u003c/a\u003e\n\nIf this package or any other package I created is helping you, please consider to sponsor me so that I can take time to read the issues, fix bugs, merge pull requests and add features to these packages.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavigmacode%2Fflutter_wx_avatar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdavigmacode%2Fflutter_wx_avatar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavigmacode%2Fflutter_wx_avatar/lists"}