| Available Controls | |
|---|---|
| FloatingButtonBar | ModernSlider |
| ProgressRing | GroupBox |
| CardCollection | AuraTabView |
| NavigationView | Ribbon |
| ContentDialog | MessageDialog |
| BlurryImage |
Now the library is available in Nuget.org.
Go to the next link: https://www.nuget.org/packages/Aura.UI .
Install Aura.UI with Visual Studio or dotnetCLI:
Open the Nuget Packages Manager on your project and search Aura.UI.
Open the terminal on the root folder of your project and write
dotnet package Aura.UI --version 0.1.3-rc2Do it like this:
For Fluent Theme add these Styles to App.xaml
<Application xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="YourApp.App">
<Application.Styles>
<FluenTheme Mode="Light"/>
<StyleInclude Source="avares://Aura.UI/AuraUI.xaml"/>
</Application.Styles>
</Application>And for Default Theme add these Styles to App.xaml
<Application xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="YourApp.App">
<Application.Styles>
<StyleInclude Source="avares://Avalonia.Themes.Fluent/Accents/BaseLight.xaml"/>
<StyleInclude Source="avares://Aura.UI/AuraUI.xaml"/>
<StyleInclude Source="avares://Avalonia.Themes.Default/Accents/BaseLight.xaml"/>
<StyleInclude Source="avares://Avalonia.Themes.Default/DefaultTheme.xaml"/>
</Application.Styles>
</Application>This library is open source and free, in a few months come out the first stable version,for now, Aura.UI is a beta.
This library is possible thanks to the follow projects:
- Avalonia by the AvaloniaUI Team.
- ColorPicker by MikeCodesDotNet.
- Math.NET Numerics by Math.NET Team.
- Documentation
Just enter to the follow Gitter chat!
Or make a pull request! All pull request are welcome!

