Skip to content

Implementing FLUI Framework in your UWP app

Ikarago edited this page Jun 10, 2019 · 2 revisions

First, make sure your minimal SDK is set to: 17763 (Version 1809).

Add the following NuGet package to your project.

Next you'll need to reference the package in your App.xaml. flui is a reference in your XAML to FluiFramework.UWP.Core.

<Application.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <flui:FluiFrameworkThemeResources/>
        </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>
</Application.Resources>

Now build the project and you should be ready to go! :) If you reference one of the Styles displayed on the other pages they should be picked up by your app from the package.

Have fun! :)

Clone this wiki locally