{"id":37040411,"url":"https://github.com/tsjdev-apps/controlslib-maui","last_synced_at":"2026-01-14T04:47:16.708Z","repository":{"id":200107275,"uuid":"704995845","full_name":"tsjdev-apps/controlslib-maui","owner":"tsjdev-apps","description":".NET MAUI Controls Library with custom controls","archived":false,"fork":false,"pushed_at":"2025-07-14T20:11:17.000Z","size":432,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-30T09:54:34.688Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/tsjdev-apps.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,"governance":null}},"created_at":"2023-10-14T18:21:43.000Z","updated_at":"2025-07-23T22:20:38.000Z","dependencies_parsed_at":null,"dependency_job_id":"e7b729ec-f827-43df-94c9-6b21678984ae","html_url":"https://github.com/tsjdev-apps/controlslib-maui","commit_stats":null,"previous_names":["tsjdev-apps/controlslib-maui"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tsjdev-apps/controlslib-maui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsjdev-apps%2Fcontrolslib-maui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsjdev-apps%2Fcontrolslib-maui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsjdev-apps%2Fcontrolslib-maui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsjdev-apps%2Fcontrolslib-maui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tsjdev-apps","download_url":"https://codeload.github.com/tsjdev-apps/controlslib-maui/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsjdev-apps%2Fcontrolslib-maui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28409855,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T01:52:23.358Z","status":"online","status_checked_at":"2026-01-14T02:00:06.678Z","response_time":107,"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":[],"created_at":"2026-01-14T04:47:15.998Z","updated_at":"2026-01-14T04:47:16.701Z","avatar_url":"https://github.com/tsjdev-apps.png","language":"C#","funding_links":["https://www.buymeacoffee.com/tsjdevapps"],"categories":[],"sub_categories":[],"readme":"# Controls Library for .NET MAUI\n\nThis repository contains some custom made controls for your .NET MAUI application.\n\nThis library is currently under development and for the moment there is a `HyperlinkLabel`, an `InitialsControl`, a `RatingControl`, and a `StaticChipControl` available.\n\n## Installation\n\nInstall the package via [NuGet](https://www.nuget.org/packages/tsjdevapps.MauiControlsLib).\n\n[![Nuget](https://img.shields.io/nuget/v/tsjdevapps.MauiControlsLib)](https://www.nuget.org/packages/tsjdevapps.MauiControlsLib)\n\n## Initialization\n\nOpen the class `MauiProgram` and call `UseMauiControlsLib()` on the `MauiAppBuilder`.\n\n```csharp\nMauiAppBuilder builder = MauiApp.CreateBuilder();\nbuilder\n    .UseMauiApp\u003cApp\u003e()\n    .UseMauiControlsLib() // \u003c--\n    .ConfigureFonts(fonts =\u003e\n    {\n        fonts.AddFont(\"OpenSans-Regular.ttf\", \"OpenSansRegular\");\n        fonts.AddFont(\"OpenSans-Semibold.ttf\", \"OpenSansSemibold\");\n    });\n\nreturn builder.Build();\n```\n\nIn order to make use of the control within XAML you can use this namespace:\n\n```xml\nxmlns:controls=\"http://www.tsjdev-apps.de/controls/maui\"\n```\n\n## Available Controls\n\n### HyperlinkLabel\n\nYou can use the `HyperlinkLabel` in your .NET MAUI application to show a simple label, which will open a website on a tap.\n\nThe following table explains all the available properties and their default value.\n\n| **name** | **type** | **default value** | **description** |\n|-|-|-|-|\n| `Url` | `string` | `null` | The url which should be opened |\n\n*Screenshot of `HyperlinkLabel` on **Android***\n\n![Android-Sample](./docs/mauicontrollibs-hyperlinklabel-android.png)\n\n*Screenshot of `HyperlinkLabel` on **Windows***\n\n![Windows-Sample](./docs/mauicontrollibs-hyperlinklabel-windows.png)\n\n### InitialsControl\n\nYou can use the `InitialsControl` in your .NET MAUI application to show a round badge with the initials of a person.\n\nThe following table explains all the available properties and their default value.\n\n| **name** | **type** | **default value** | **description** |\n|-|-|-|-|\n| `DefaultBackgroundColor` | `Color` | `Colors.LightGray` | Indicates the default background color if no `name` is available |\n| `TextColorLight` | `Color` | `Colors.White` | Indicates the light text color |\n| `TextColorDark` | `Color` | `Colors.Black` | Indicates the dark text color |\n| `Name` | `string` | `string.Empty` | Indicates the name to take the initials from |\n| `Size` | `ControlSize` | `ControlSize.Small` | Indicates the size of the control |\n\n*Screenshot of `InitialsControl` on **Android***\n\n![Android-Sample](./docs/mauicontrollibs-initalscontrol-android.png)\n\n*Screenshot of `InitialsControl` on **Windows***\n\n![Windows-Sample](./docs/mauicontrollibs-initialscontrol-windows.png)\n\n### RatingControl\n\nYou can use the `RatingControl` in your .NET MAUI application.\n\nThe following table explains all the available properties and their default value.\n\n| **name** | **type** | **default value** | **description** |\n|-|-|-|-|\n| `Amount` | `int` | `5` | Indicates the number of rating items to be displayed |\n| `CurrentValue` | `float` | `2.5f` | Indicates the current rating value to be displayed |\n| `ItemSize` | `float` | `24f` | Indicates the size of each rating item |\n| `ItemSpacing` | `float` | `6f` | Indicates the spacing between each rating item. |\n| `FillColor` | `Color` | `Colors.Yellow` | Indicates the fill color to be used for each rating item |\n| `UnfillColor` | `Color` | `Colors.LightGray` | Indicates the unfill color to be used for each rating item |\n| `Path` | `string` | `\u003cStar\u003e` | Indicates the path used to draw each rating item |\n\n*Screenshot of `RatingControl` on **Android***\n\n![Android-Sample](./docs/mauicontrollibs-ratingcontrol-android.png)\n\n*Screenshot of `RatingControl` on **Windows***\n\n![Windows-Sample](./docs/mauicontrollibs-ratingcontrol-windows.png)\n\n### StaticChipControl\n\nYou can use the `StaticChipControl` in your .NET MAUI application.\n\nThe following table explains all the available properties and their default value.\n\n| **name** | **type** | **default value** | **description** |\n|-|-|-|-|\n| `Text` | `string` | `string.Empty` | Indicates the text of the chip to be displayed |\n| `Color` | `Color` | `Colors.LightGray` | Indicates the background color of the chip |\n| `TextColor` | `Color` | `Colors.Black` | Indicates the text color of the text |\n| `ImageSource` | `ImageSource` | `null` | Indicates the icon of the chip |\n\n*Screenshot of `StaticChipControl` on **Android***\n\n![Android-Sample](./docs/mauicontrollibs-staticchipcontrol-android.png)\n\n*Screenshot of `StaticChipControl` on **Windows***\n\n![Windows-Sample](./docs/mauicontrollibs-staticchipcontrol-windows.png)\n\n## Buy Me A Coffee\n\nI appreciate any form of support to keep my *Open Source* activities going.\n\nWhatever you decide, be it reading and sharing my blog posts, using my NuGet packages or buying me a coffee/book, thank you ❤️.\n\n[![Buy Me A Coffee](https://cdn.buymeacoffee.com/buttons/default-yellow.png)](https://www.buymeacoffee.com/tsjdevapps)\n\n## Contributing\n\nPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.\n\n## License\n\n[MIT](https://choosealicense.com/licenses/mit/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftsjdev-apps%2Fcontrolslib-maui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftsjdev-apps%2Fcontrolslib-maui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftsjdev-apps%2Fcontrolslib-maui/lists"}