{"id":32286330,"url":"https://github.com/bynicodevelop/flutter_profile_list","last_synced_at":"2025-10-23T02:00:12.186Z","repository":{"id":56829980,"uuid":"321355710","full_name":"bynicodevelop/flutter_profile_list","owner":"bynicodevelop","description":null,"archived":false,"fork":false,"pushed_at":"2020-12-30T13:17:30.000Z","size":76,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-23T01:59:49.751Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/bynicodevelop.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}},"created_at":"2020-12-14T13:26:45.000Z","updated_at":"2020-12-30T13:17:33.000Z","dependencies_parsed_at":"2022-09-02T05:50:58.900Z","dependency_job_id":null,"html_url":"https://github.com/bynicodevelop/flutter_profile_list","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bynicodevelop/flutter_profile_list","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bynicodevelop%2Fflutter_profile_list","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bynicodevelop%2Fflutter_profile_list/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bynicodevelop%2Fflutter_profile_list/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bynicodevelop%2Fflutter_profile_list/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bynicodevelop","download_url":"https://codeload.github.com/bynicodevelop/flutter_profile_list/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bynicodevelop%2Fflutter_profile_list/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280546417,"owners_count":26348724,"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-10-23T02:00:06.710Z","response_time":142,"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":[],"created_at":"2025-10-23T02:00:10.908Z","updated_at":"2025-10-23T02:00:12.181Z","avatar_url":"https://github.com/bynicodevelop.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# flutter_profile_list\n\nThis plugin allows you to generate a list of profiles in a few lines of code.\n\nAllows to capture the \"ontap\" event of each item.\n\nEach avatar has the Hero widget\n\n## Getting Started\n\n```\nimport 'package:faker/faker.dart';\nimport 'package:flutter/material.dart';\n\nimport 'package:flutter_profile_list/flutter_profile_list.dart';\nimport 'package:flutter_profile_list/models/Profile.dart';\n\nvoid main() {\n  runApp(MyApp());\n}\n\nclass MyApp extends StatefulWidget {\n  @override\n  _MyAppState createState() =\u003e _MyAppState();\n}\n\nclass _MyAppState extends State\u003cMyApp\u003e {\n  final Faker _faker = Faker();\n  List\u003cItemProfileModel\u003e _profiles = List\u003cItemProfileModel\u003e();\n\n  @override\n  void initState() {\n    super.initState();\n\n    // Creating a List of ItemProfileModel\n    for (int i = 0; i \u003c 30; i++) {\n      int randInt = _faker.randomGenerator.integer(9);\n\n      _profiles.add(\n        ItemProfileModel(\n          uid: _faker.randomGenerator.string(10),\n          username: _faker.person.name(),\n          status: randInt % 3 != 0 ? _faker.lorem.sentences(2).join(' ') : '',\n          avatarURL: _faker.image.image(width: 200, height: 200, keywords: [\n            'person',\n            DateTime.now().toString(),\n          ]),\n        ),\n      );\n    }\n  }\n\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        // Call the Widget\n        body: ProfileList(\n          // Capture the on tap event to trigger an action such as a redirect\n          onTap: (ItemProfileModel profile) =\u003e print(profile.toJson()),\n          // Set the list of items (profiles)\n          profiles: _profiles,\n        ),\n      ),\n    );\n  }\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbynicodevelop%2Fflutter_profile_list","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbynicodevelop%2Fflutter_profile_list","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbynicodevelop%2Fflutter_profile_list/lists"}