Skip to content

Zealandia-Systems/Aura.UI

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status Gitter NuGet downloads PRs Welcome Size



Aura.UI

Control's Library for Avalonia

Overview

Available Controls
FloatingButtonBar ModernSlider
ProgressRing GroupBox
CardCollection AuraTabView
NavigationView Ribbon
ContentDialog MessageDialog
BlurryImage

Install

Now the library is available in Nuget.org.

First Step

Go to the next link: https://www.nuget.org/packages/Aura.UI .

Second Step

Install Aura.UI with Visual Studio or dotnetCLI:

Visual Studio

Open the Nuget Packages Manager on your project and search Aura.UI.

Dotnet CLI

Open the terminal on the root folder of your project and write

dotnet package Aura.UI --version 0.1.3

Preparation

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>

Gallery

Sample

AuraTabView

BlurryImage

CardCollection

ContentDialog

FloatingButtonBar

GroupBox

MessageDialog

ModernSlider

NavigationView

ProgressRing

Ribbon

About Aura.UI

This library is open source and free, in a few months come out the first stable version,for now, Aura.UI is a beta.

Credits

This library is possible thanks to the follow projects:

To Do

  • Documentation

How To Collaborate

Just enter to the follow Gitter chat!

Gitter

Or make a pull request! All pull request are welcome!

Special thanks to

About

A Library with a lot of Controls for AvaloniaUI

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 99.1%
  • Vim Snippet 0.9%