b5ca4121e0 | ||
---|---|---|
.dependabot | ||
.github | ||
build | ||
docs/controls | ||
samples | ||
src | ||
.editorconfig | ||
.gitignore | ||
.mergify.yml | ||
CODE_OF_CONDUCT.md | ||
LICENSE.md | ||
README.md | ||
SECURITY.md | ||
gitversion.yml |
README.md
Uno.Toolkit
A set of custom controls for the UWP, WinUI and the Uno Platform not offered out of the box by WinUI, such as Card for example.
Material Styles for custom controls
Controls | StyleNames |
---|---|
Card | MaterialOutlinedCardStyle MaterialElevatedCardStyle MaterialAvatarOutlinedCardStyle MaterialAvatarElevatedCardStyle MaterialSmallMediaOutlinedCardStyle MaterialSmallMediaElevatedCardStyle |
Start using the styles in your pages!
To use styles, just find the name of the style from our documentation or sample app and use it like this:
Here is how to use our custom controls like a Card
xmlns:utu="using:Uno.Toolkit.UI.Controls"
[...]
<material:Card Header="Outlined card"
SubHeader="With title and subitle"
Style="{StaticResource MaterialOutlinedCardStyle}" />