{"id":19113784,"url":"https://github.com/mugbug/fretboard","last_synced_at":"2026-05-07T09:31:15.472Z","repository":{"id":180009474,"uuid":"656417928","full_name":"mugbug/fretboard","owner":"mugbug","description":"Song writing toolkit for Flutter 🎸","archived":false,"fork":false,"pushed_at":"2023-10-03T18:01:48.000Z","size":1987,"stargazers_count":5,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-23T04:14:59.444Z","etag":null,"topics":["chord","dart","flutter","fretboard","music","tab"],"latest_commit_sha":null,"homepage":"","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/mugbug.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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-06-20T23:23:32.000Z","updated_at":"2026-04-10T08:30:48.000Z","dependencies_parsed_at":null,"dependency_job_id":"cb9564c8-4c51-490e-adfb-d3fa08659489","html_url":"https://github.com/mugbug/fretboard","commit_stats":null,"previous_names":["mugbug/fretboard"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/mugbug/fretboard","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mugbug%2Ffretboard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mugbug%2Ffretboard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mugbug%2Ffretboard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mugbug%2Ffretboard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mugbug","download_url":"https://codeload.github.com/mugbug/fretboard/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mugbug%2Ffretboard/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32731191,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-07T02:14:30.463Z","status":"ssl_error","status_checked_at":"2026-05-07T02:14:29.405Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["chord","dart","flutter","fretboard","music","tab"],"created_at":"2024-11-09T04:39:01.723Z","updated_at":"2026-05-07T09:31:15.455Z","avatar_url":"https://github.com/mugbug.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🎸 fretboard\n\n[![Pub](https://img.shields.io/pub/v/fretboard.svg)](https://pub.dev/packages/fretboard)\n[![style: very good analysis][very_good_analysis_badge]][very_good_analysis_link]\n[![License: MIT][license_badge]][license_link]\n\nSong writing toolkit for Flutter.\n\n## Features\n\n✅ Easily draw a fretboard layout with some note markers.\n\n🚧 Show the note symbol with a letter notation.\n\n🚧 Automatically generate a fretboard drawing based on a given scale name.\n\n## Usage\n\nTo draw a simple guitar fretboard you can just instantiate the `Fretboard` widget passing some `Size` and a matrix that represents how the fretboard should be drawn:\n\n```dart\nclass MyCustomWidget extends StatelessWidget {\n  const MyCustomWidget({super.key});\n\n  @override\n  Widget build(BuildContext context) {\n    return Center(\n      child: Fretboard(\n        size: Size(400, 240),\n        notesMatrix: [\n          ['', 'o', '', '', 'o', ''],\n          ['', 'o', '', '', 'o', ''],\n          ['', 'o', '', 'o', '', ''],\n          ['', 'o', '', '0', '', ''],\n          ['', 'o', '', '', 'o', ''],\n          ['', '0', '', '', 'o', ''],\n        ],\n      ),\n    );\n  }\n}\n```\n\n![Example Screenshot][screenshot]\n\n## Advanced usage\n\n### Custom theme\n\nYou can change the default theme colors by passing a custom `FretboardTheme`:\n\n```dart\nFretboard(\n  size: Size(400, 240),\n  theme: FretboardTheme(\n    tonicColor: Colors.green,\n    noteColor: Colors.pink,\n    fretColor: Colors.grey,\n    stringColor: Colors.black,\n  ),\n  notesMatrix: [\n    ['', 'o', '', '', 'o', ''],\n    ['', 'o', '', '', 'o', ''],\n    ['', 'o', '', 'o', '', ''],\n    ['', 'o', '', '0', '', ''],\n    ['', 'o', '', '', 'o', ''],\n    ['', '0', '', '', 'o', ''],\n  ],\n),\n```\n\n## Dart Versions\n\n* Dart 3 \u003e= 3.0.0\n\n## Maintainers\n\n* [Pedro Zaroni](https://github.com/mugbug)\n\n[license_badge]: https://img.shields.io/badge/license-MIT-blue.svg\n[license_link]: https://opensource.org/licenses/MIT\n[very_good_analysis_badge]: https://img.shields.io/badge/style-very_good_analysis-B22C89.svg\n[very_good_analysis_link]: https://pub.dev/packages/very_good_analysis\n[screenshot]: https://raw.githubusercontent.com/mugbug/fretboard/main/doc/assets/fretboard_demo.png","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmugbug%2Ffretboard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmugbug%2Ffretboard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmugbug%2Ffretboard/lists"}