{"id":15436004,"url":"https://github.com/bitstudio-id/terbilang","last_synced_at":"2026-02-21T08:35:47.846Z","repository":{"id":56841175,"uuid":"210176134","full_name":"bitstudio-id/Terbilang","owner":"bitstudio-id","description":"Convert number \u0026 date to words in any language for Flutter","archived":false,"fork":false,"pushed_at":"2025-02-12T10:59:11.000Z","size":195,"stargazers_count":2,"open_issues_count":0,"forks_count":5,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-12T11:49:48.481Z","etag":null,"topics":["currency","currency-format","dart","date","date-formatting","flutter","pub","terbilang"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/terbilang","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/bitstudio-id.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":"2019-09-22T16:10:14.000Z","updated_at":"2025-02-12T10:59:15.000Z","dependencies_parsed_at":"2025-01-28T20:41:27.496Z","dependency_job_id":null,"html_url":"https://github.com/bitstudio-id/Terbilang","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bitstudio-id/Terbilang","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitstudio-id%2FTerbilang","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitstudio-id%2FTerbilang/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitstudio-id%2FTerbilang/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitstudio-id%2FTerbilang/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bitstudio-id","download_url":"https://codeload.github.com/bitstudio-id/Terbilang/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitstudio-id%2FTerbilang/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279006846,"owners_count":26084206,"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-11T02:00:06.511Z","response_time":55,"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":["currency","currency-format","dart","date","date-formatting","flutter","pub","terbilang"],"created_at":"2024-10-01T18:47:29.734Z","updated_at":"2025-10-11T10:31:49.018Z","avatar_url":"https://github.com/bitstudio-id.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Terbilang | Number To Words Conversion For Flutter | Dart\n\nConvert number \u0026 date to words in any language for Flutter/Dart, this package is inspired from laravel package [riskihajar/terbilang](https://github.com/riskihajar/terbilang)\n\n## Getting Started\nNumber to words conversion support multi language.\n### Supported Language\n* `id` | Bahasa Indonesia\n* `en` | English\n* soon\n\n### Feature\n* [Number to Word](https://github.com/bitstudio-id/terbilang#number-to-words)\n* [Number to Roman](https://github.com/bitstudio-id/terbilang#number-to-roman)\n* [Number Short Hand](https://github.com/bitstudio-id/terbilang#number-short-hand)\n* [Datetime to Word](https://github.com/bitstudio-id/terbilang#datetime)\n* [Period](https://github.com/bitstudio-id/terbilang#period)\n\n### Add dependency\n```yaml\ndependencies:\n  terbilang: 1.0.5  #latest version\n```\n\n#### Pull Request\n\u003e Feel free to submit pull requests for desired changes / features / bug fixes... It makes the maintenance of this code much easier as I no longer use Flutter frequently.\n\n\u003eTerbilang supports for number, date (coming soon), and romans (coming soon)\n\n```\nimport 'package:terbilang/terbilang.dart';\n...\nTerbilang _terbilang = Terbilang(number: 10000); // u can use any parameter (string, int, double) numeric on costruct\n\n//Terbilang _terbilang = Terbilang(number: \"10000\");\n//Terbilang _terbilang = Terbilang(number: 10000.87);\n\nprint(_terbilang.result()); // sepuluh ribu\n\nTerbilang _terbilang1 = Terbilang(number: 1290.56);\nprint(_terbilang1.result()); // seribu dua ratus sembilan puluh koma lima enam\n```\n\n#### Prefix \u0026 Suffix\nif you set language to id\n```\nimport 'package:terbilang/terbilang.dart';\n...\nTerbilang _terbilang = Terbilang(); // default language is id\nprint(_terbilang.make(number : 10000, prefix : \"senilai\", suffix : \"rupiah\")); //senilai sepuluh ribu rupiah\n```\nif you set language to en\n```\nimport 'package:terbilang/terbilang.dart';\n...\nTerbilang _terbilang = Terbilang(lang : \"en\"); // default language is id\nprint(_terbilang.make(number : 6000, suffix : \"dollars\")); //six hundred dollars\n```\n\n### Number to Roman\n```\ncoming soon\n```\n\n### Number Shorthand\n```\ncoming soon\n```\n\n### DateTime\n```\ncoming soon\n```\n### Period\n```\ncoming soon\n```\n\n#### How to use on flutter\n\n\u003enote : i don't have write widget to use for flutter, but if u really need it, u can write and feel free to make pull request\n\n```\n //how to use on widget\n ... : Container(\n     child : Text(Terbilang(number: 10000.87).result())\n );\n\n //how to use on widget with latest build\n ... : Container(\n     child : Text(Terbilang().make(number: 10000.87))\n );\n```\n### coming soon\nanother awesome feature\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbitstudio-id%2Fterbilang","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbitstudio-id%2Fterbilang","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbitstudio-id%2Fterbilang/lists"}