{"id":19197534,"url":"https://github.com/rikulo/bootjack","last_synced_at":"2025-08-20T16:31:43.312Z","repository":{"id":7985019,"uuid":"9389703","full_name":"rikulo/bootjack","owner":"rikulo","description":"Twitter Bootstrap ported in Dart.","archived":false,"fork":false,"pushed_at":"2024-01-02T07:46:40.000Z","size":508,"stargazers_count":88,"open_issues_count":9,"forks_count":15,"subscribers_count":15,"default_branch":"master","last_synced_at":"2024-12-11T20:11:04.111Z","etag":null,"topics":["bootstrap","dart"],"latest_commit_sha":null,"homepage":"https://quire.io","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rikulo.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":"2013-04-12T08:19:08.000Z","updated_at":"2023-02-25T12:31:08.000Z","dependencies_parsed_at":"2024-01-02T08:46:02.498Z","dependency_job_id":"b519cc37-c2a8-470f-af34-84be86369929","html_url":"https://github.com/rikulo/bootjack","commit_stats":{"total_commits":154,"total_committers":8,"mean_commits":19.25,"dds":"0.35064935064935066","last_synced_commit":"ebf4e300c9b9ee521dc7b2b94cedbb8fa786e92b"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rikulo%2Fbootjack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rikulo%2Fbootjack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rikulo%2Fbootjack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rikulo%2Fbootjack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rikulo","download_url":"https://codeload.github.com/rikulo/bootjack/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":230438185,"owners_count":18225870,"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":["bootstrap","dart"],"created_at":"2024-11-09T12:17:13.542Z","updated_at":"2024-12-19T13:07:36.946Z","avatar_url":"https://github.com/rikulo.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bootjack\n\nBootjack is a porting of [Twitter Bootstrap](http://getbootstrap.com/) 3.0.x in Dart.\n\n* [API Reference](https://pub.dev/documentation/bootjack/latest/)\n* [Git Repository](https://github.com/rikulo/bootjack)\n* [Discussion](http://stackoverflow.com/questions/tagged/rikulo)\n* [Issues](https://github.com/rikulo/bootjack/issues)\n\n## Install from Dart Pub Repository\n\nInclude the following in your `pubspec.yaml`:\n\n    dependencies:\n      bootjack: any\n\nThen run the [Pub Package Manager](http://pub.dartlang.org/doc) in Dart Editor (Tool \u003e Pub Install). If you are using a different editor, run the command\n(comes with the Dart SDK):\n\n    pub install\n\n## Usage\n\nFirst of all in your HTML file, you need to include the CSS resource:\n  \n\t\u003chead\u003e\n\t\t...\n\t\t\u003clink rel=\"stylesheet\" href=\"packages/bootjack/css/bootstrap.min.css\"\u003e\n\t\u003c/head\u003e\n\nMost of the functions in Bootjack components are automatic -- you only need to give the right CSS class on DOM elements and call a global function to register.\n\nFor example, a Dropdown button component is prepared by giving the following HTML snippet:\n\n\t\u003cbutton class=\"btn btn-default dropdown-toggle\" data-toggle=\"dropdown\"\u003e\n\t\tButton\n\t\t\u003cspan class=\"caret\"\u003e\u003c/span\u003e\n\t\u003c/button\u003e\n\t\u003cul class=\"dropdown-menu\"\u003e\n\t\t\u003cli\u003e\u003ca href=\"#\"\u003eMenu Item #1\u003c/a\u003e\u003c/li\u003e\n\t\t\u003cli\u003e\u003ca href=\"#\"\u003eMenu Item #2\u003c/a\u003e\u003c/li\u003e\n\t\t\u003cli\u003e\u003ca href=\"#\"\u003eMenu Item #3\u003c/a\u003e\u003c/li\u003e\n\t\u003c/ul\u003e\n\nWith the following global registration in Dart:\n\n\tvoid main() {\n\t\tDropdown.use();\n\t}\n\nThat's right. All you need to do in Dart is to tell Bootjack you are using Dropdown components. You can also progammatically access and manipulate the Dropdown:\n\n\tDropdown dd = Dropdown.wire(element);\n\tdd.toggle();\n\nCheck more [examples](https://github.com/rikulo/bootjack/tree/master/example) and the [API reference](https://pub.dev/documentation/bootjack/latest/) for more features. Also, you can read the reference of [Bootstrap](http://getbootstrap.com/getting-started/).\n\n## Notes to Contributors\n\n### Test and Debug\n\nYou are welcome to submit [bugs and feature requests](https://github.com/rikulo/bootjack/issues). Or even better if you can fix or implement them!\n\n### Fork Bootjack\n\nIf you'd like to contribute back to the core, you can [fork this repository](https://help.github.com/articles/fork-a-repo) and send us a pull request, when it is ready.\n\nPlease be aware that one of Rikulo's design goals is to keep the sphere of API as neat and consistency as possible. Strong enhancement always demands greater consensus.\n\nIf you are new to Git or GitHub, please read [this guide](https://help.github.com/) first.\n\n## Who Uses\n\n* [Quire](https://quire.io) - a simple, collaborative, multi-level task management tool.\n* [Keikai](https://keikai.io) - a sophisticated spreadsheet for big data\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frikulo%2Fbootjack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frikulo%2Fbootjack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frikulo%2Fbootjack/lists"}