{"id":32287004,"url":"https://github.com/bynicodevelop/flutter_profile_manager","last_synced_at":"2026-02-22T15:12:47.008Z","repository":{"id":56829992,"uuid":"321686455","full_name":"bynicodevelop/flutter_profile_manager","owner":"bynicodevelop","description":null,"archived":false,"fork":false,"pushed_at":"2020-12-31T16:09:01.000Z","size":90,"stargazers_count":3,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-05-28T23:38:31.506Z","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-15T14:07:22.000Z","updated_at":"2023-12-24T16:57:07.000Z","dependencies_parsed_at":"2022-09-02T03:51:36.324Z","dependency_job_id":null,"html_url":"https://github.com/bynicodevelop/flutter_profile_manager","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bynicodevelop/flutter_profile_manager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bynicodevelop%2Fflutter_profile_manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bynicodevelop%2Fflutter_profile_manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bynicodevelop%2Fflutter_profile_manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bynicodevelop%2Fflutter_profile_manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bynicodevelop","download_url":"https://codeload.github.com/bynicodevelop/flutter_profile_manager/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bynicodevelop%2Fflutter_profile_manager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29716792,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-22T15:10:41.462Z","status":"ssl_error","status_checked_at":"2026-02-22T15:10:04.636Z","response_time":110,"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":"2025-10-23T02:02:11.659Z","updated_at":"2026-02-22T15:12:47.000Z","avatar_url":"https://github.com/bynicodevelop.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# flutter_profile_manager\n\nCreate a profile form with updated data.\n\n## Getting Started\n\n```\nimport 'package:flutter/material.dart';\nimport 'package:flutter_profile_manager/flutter_profile_manager.dart';\nimport 'package:flutter_profile_manager/models/Field.dart';\nimport 'package:flutter_profile_manager/enums/TypeField.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  Map\u003cString, FieldModel\u003e _map = Map\u003cString, FieldModel\u003e();\n\n  @override\n  void initState() {\n    super.initState();\n\n    _map.addAll(\n      {\n        'avatarURL': FieldModel(\n          id: 'avatarURL',\n          icon: null,\n          label: null,\n          defaultValue: 'John Doe',\n          value: 'https://picsum.photos/200',\n          onUpdated: (value) =\u003e null,\n          type: TypeField.AVATAR,\n        ),\n        'email': FieldModel(\n          id: 'email',\n          icon: Icons.email,\n          label: 'Email',\n          value: 'john.doe@domain.tld',\n          onUpdated: (value) =\u003e null,\n          type: TypeField.EMAIL,\n          fieldPlaceholder: 'Enter your email',\n        ),\n        'username': FieldModel(\n          id: 'username',\n          icon: Icons.person,\n          label: 'Username',\n          value: 'john doe',\n          onUpdated: (value) =\u003e null,\n          fieldPlaceholder: 'Enter your username',\n        ),\n        'status': FieldModel(\n          id: 'status',\n          icon: Icons.info,\n          label: 'About',\n          value:\n              'Le lorem ipsum est, en imprimerie, une suite de mots sans signification utilisée à titre provisoire.',\n          onUpdated: (value) =\u003e null,\n          fieldPlaceholder: 'Enter your status',\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        body: ProfileManager(\n          onCancled: (FieldModel fieldMode) =\u003e null,\n          onUpdated: (dynamic value, FieldModel fieldModel) {\n            _map[fieldModel.id].updateValue = value;\n\n            setState(() =\u003e print('refresh view...'));\n          },\n          fields: _map.values.toList(),\n        ),\n      ),\n    );\n  }\n}\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbynicodevelop%2Fflutter_profile_manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbynicodevelop%2Fflutter_profile_manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbynicodevelop%2Fflutter_profile_manager/lists"}