{"id":23445954,"url":"https://github.com/sbytedev/net.mvvmcross.plugins.datetimeconverter","last_synced_at":"2026-04-28T08:03:12.262Z","repository":{"id":45198367,"uuid":"234722659","full_name":"sbytedev/Net.MvvmCross.Plugins.DateTimeConverter","owner":"sbytedev","description":"A set of date and time converters.","archived":false,"fork":false,"pushed_at":"2022-12-01T11:00:55.000Z","size":174,"stargazers_count":1,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2025-12-03T19:51:06.369Z","etag":null,"topics":["c-sharp","date-formatting","mvvmcross","plugin","xamarin"],"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/sbytedev.png","metadata":{"files":{"readme":"README.md","changelog":null,"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-01-18T11:11:43.000Z","updated_at":"2023-11-07T12:53:25.000Z","dependencies_parsed_at":"2023-01-22T14:15:29.909Z","dependency_job_id":null,"html_url":"https://github.com/sbytedev/Net.MvvmCross.Plugins.DateTimeConverter","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/sbytedev/Net.MvvmCross.Plugins.DateTimeConverter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbytedev%2FNet.MvvmCross.Plugins.DateTimeConverter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbytedev%2FNet.MvvmCross.Plugins.DateTimeConverter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbytedev%2FNet.MvvmCross.Plugins.DateTimeConverter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbytedev%2FNet.MvvmCross.Plugins.DateTimeConverter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sbytedev","download_url":"https://codeload.github.com/sbytedev/Net.MvvmCross.Plugins.DateTimeConverter/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbytedev%2FNet.MvvmCross.Plugins.DateTimeConverter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32371673,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"online","status_checked_at":"2026-04-28T02:00:07.250Z","response_time":56,"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":["c-sharp","date-formatting","mvvmcross","plugin","xamarin"],"created_at":"2024-12-23T20:28:31.805Z","updated_at":"2026-04-28T08:03:12.246Z","avatar_url":"https://github.com/sbytedev.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MvvmCross DateTimeConverter Plugin\n![GitHub](https://img.shields.io/github/license/SByteDev/Net.MvvmCross.Plugins.DateTimeConverter.svg)\n![Nuget](https://img.shields.io/nuget/v/SByteDev.MvvmCross.Plugins.DateTimeConverter.svg)\n[![CI](https://github.com/SByteDev/Net.MvvmCross.Plugins.DateTimeConverter/actions/workflows/ci.yml/badge.svg)](https://github.com/SByteDev/Net.MvvmCross.Plugins.DateTimeConverter/actions/workflows/ci.yml)\n[![CD](https://github.com/SByteDev/Net.MvvmCross.Plugins.DateTimeConverter/actions/workflows/cd.yml/badge.svg)](https://github.com/SByteDev/Net.MvvmCross.Plugins.DateTimeConverter/actions/workflows/cd.yml)\n[![CodeFactor](https://www.codefactor.io/repository/github/sbytedev/net.mvvmcross.plugins.datetimeconverter/badge)](https://www.codefactor.io/repository/github/sbytedev/net.mvvmcross.plugins.datetimeconverter)\n\nProvides a set of native converters to convert DateTime into the user-friendly string.\n\n## Installation\n\nUse [NuGet](https://www.nuget.org) package manager to install this library.\n\n```bash\nInstall-Package SByteDev.MvvmCross.Plugins.DateTimeConverter\n```\n\n## Usage\n```cs\nusing SByteDev.MvvmCross.Plugins.DateTimeConverter;\n```\n\n### iOS\n|Converter|Output|\n|---------|------|\n|DateTimeToLongDateString|Feb 3, 2020|\n|DateTimeToLongDateTimeString|Feb 3, 2020 at 6:30:10 PM GMT+3|\n|DateTimeToLongTimeString|6:30:10 PM GMT+3|\n|DateTimeToMediumDateString|Feb 3, 2020|\n|DateTimeToMediumDateTimeString|Feb 3, 2020 at 6:30:10 PM|\n|DateTimeToMediumTimeString|6:30:10 PM|\n|DateTimeToShortDateString|2/3/20|\n|DateTimeToShortDateTimeString|2/3/20, 6:30 PM|\n|DateTimeToShortTimeString|6:30 PM|\n|DateTimeToRelativeDateTimeString|now,last week, etc.|\n\n### Android\n|Converter|Output|\n|---------|------|\n|DateTimeToDateString|February 3|\n|DateTimeToDateTimeString|February 3, 6:30 PM|\n|DateTimeToTimeString|6:30 PM|\n|DateTimeToRelativeString|May 11, 2020|\n\n## Implementation\n\n### iOS\n\nUses [NSDateFormatter](https://developer.apple.com/documentation/foundation/nsdateformatter) and [NSRelativeDateTimeFormatter](https://developer.apple.com/documentation/foundation/nsrelativedatetimeformatter).\n\n### Android\n\nUses [DateUtils](https://developer.android.com/reference/android/text/format/DateUtils).\n\n## Contributing\nPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.\n\nPlease make sure to update the tests as appropriate.\n\n## License\n[MIT](https://choosealicense.com/licenses/mit/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsbytedev%2Fnet.mvvmcross.plugins.datetimeconverter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsbytedev%2Fnet.mvvmcross.plugins.datetimeconverter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsbytedev%2Fnet.mvvmcross.plugins.datetimeconverter/lists"}