{"id":21599451,"url":"https://github.com/abichinger/github-issues","last_synced_at":"2026-04-29T01:02:16.936Z","repository":{"id":193329839,"uuid":"688463398","full_name":"abichinger/github-issues","owner":"abichinger","description":"Flutter package to create Github issues","archived":false,"fork":false,"pushed_at":"2023-09-12T20:58:39.000Z","size":1129,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-24T17:48:04.272Z","etag":null,"topics":["dart","dart-package","feedback","flutter","issue-tracker"],"latest_commit_sha":null,"homepage":"","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/abichinger.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}},"created_at":"2023-09-07T12:01:22.000Z","updated_at":"2024-11-07T08:26:05.000Z","dependencies_parsed_at":"2023-09-07T19:29:05.362Z","dependency_job_id":null,"html_url":"https://github.com/abichinger/github-issues","commit_stats":null,"previous_names":["abichinger/github-issues"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abichinger%2Fgithub-issues","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abichinger%2Fgithub-issues/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abichinger%2Fgithub-issues/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abichinger%2Fgithub-issues/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abichinger","download_url":"https://codeload.github.com/abichinger/github-issues/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244216757,"owners_count":20417651,"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","feedback","flutter","issue-tracker"],"created_at":"2024-11-24T18:15:25.824Z","updated_at":"2026-04-29T01:02:11.893Z","avatar_url":"https://github.com/abichinger.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!--\nThis README describes the package. If you publish this package to pub.dev,\nthis README's contents appear on the landing page for your package.\n\nFor information about how to write a good package README, see the guide for\n[writing package pages](https://dart.dev/guides/libraries/writing-package-pages).\n\nFor general information about developing packages, see the Dart guide for\n[creating packages](https://dart.dev/guides/libraries/create-library-packages)\nand the Flutter guide for\n[developing packages and plugins](https://flutter.dev/developing-packages).\n--\u003e\n# Github Issues\n\n[![Pub Version](https://img.shields.io/pub/v/github_issues.svg)](https://pub.dev/packages/github_issues)\n\nUse Github issues to collect user feedback.\n\n\u003cimg src=\"https://github.com/abichinger/github-issues/raw/main/screenshots/screenshots.png\" alt=\"Screenshots\"\u003e\n\n## Features\n\n- Create Github issues with title, comment and labels\n- Easy internationalization with `GithubIssuesLocalizations`\n- Supports two authentication methods\n\n## Getting started\n\n1. Create a repository to store the user feedback (or use an existing one).\n2. Get a token with read and write access on issues for your repository \u003cbr /\u003e\n**Option 1**: [Generate a personal access token](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens) \u003cbr /\u003e\n**Option 2**: Create a [Github App](https://docs.github.com/en/apps/creating-github-apps/registering-a-github-app/registering-a-github-app) -\u003e [Install](https://docs.github.com/en/enterprise-cloud@latest/apps/using-github-apps/installing-your-own-github-app) your own Github App -\u003e [Generate a private key](https://docs.github.com/en/apps/creating-github-apps/authenticating-with-a-github-app/managing-private-keys-for-github-apps) for your Github App.\n\n## Usage\n\n[Full example](https://pub.dev/packages/github_issues/example)\n\n**Fill input fields in advance**:\n\n```dart\nshowDialog(\n  context: context,\n  builder: (context) {\n    return GithubIssueDialog(\n      github: Github(Authentication.token('PERSONAL_ACCESS_TOKEN'));,\n      owner: 'OWNER',\n      repo: 'REPO',\n      initialValue: const IssueRequest(title: \"Hello World!\"),\n    );\n  },\n);\n```\n\n**Pass your custom localizations**:\n\n```dart\nclass CustomLocalization extends GithubIssuesLocalizationsEn {\n  @override\n  String get dialogTitle =\u003e 'Thanks for your feedback!';\n}\n\nshowDialog(\n  context: context,\n  builder: (context) {\n    return GithubIssueDialog(\n      github: Github(Authentication.token('PERSONAL_ACCESS_TOKEN'));,\n      owner: 'OWNER',\n      repo: 'REPO',\n      localizations: CustomLocalization(),\n    );\n  },\n);\n```\n\n**Show only comment input**:\n\n```dart\nshowDialog(\n  context: context,\n  builder: (context) {\n    return GithubIssueDialog(\n      github: Github(Authentication.token('PERSONAL_ACCESS_TOKEN'));,\n      owner: 'OWNER',\n      repo: 'REPO',\n      showTitle: false,\n      labels: null,\n      initialValue: const IssueRequest(title: \"Hidden Title\"), // title is required\n    );\n  },\n);\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabichinger%2Fgithub-issues","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabichinger%2Fgithub-issues","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabichinger%2Fgithub-issues/lists"}