Home

Awesome

Tizen.NET.MaterialComponents NuGet

Material Components for Tizen .NET help developers execute Material Design.

Components

Status of Supported Components for each Tizen Profiles

https://github.com/TizenAPI/Tizen.NET.MaterialComponents/wiki/Limitation-on-Tizen.NET.MaterialComponents

Getting Started

Install package

nuget.exe

nuget.exe install Tizen.NET.MaterialComponents -Version 0.9.9-pre1

.csproj

<PackageReference Include="Tizen.NET.MaterialComponents" Version="0.9.9-pre1" />

How to use Tizen.NET Material Components

In order to use Tizen.NET Material Components in your application, you MUST call MaterialComponents.Init() prior to using it.

using Tizen.NET.MaterialComponents;

protected override void OnCreate()
{
    base.OnCreate();
    // Get your application resource directory
    ResourceDir = DirectoryInfo.Resource;
    
    // Initialze ThemeLoader
    MaterialComponents.Init(ResourceDir);
}