From 28ae93bbf2d293178f6c3d9f02e2760de1236c27 Mon Sep 17 00:00:00 2001 From: Dmitriy Stafeev <51204805+bubuntoid@users.noreply.github.com> Date: Sat, 22 May 2021 13:01:02 +0300 Subject: [PATCH] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8811418..ab3ab7b 100644 --- a/README.md +++ b/README.md @@ -7,10 +7,12 @@ EasyDialog is a framework that automatically creates UI dialogs with easy contro ## Nuget https://www.nuget.org/packages/bubuntoid.EasyDialog +https://www.nuget.org/packages/bubuntoid.EasyDialog.MaterialSkin/ +https://www.nuget.org/packages/bubuntoid.EasyDialog.MetroFramework/ ## Sample ```csharp -using bubuntoid.EasyDialog; +using bubuntoid.EasyDialog; public class AuthDialog : DialogContext { @@ -20,7 +22,7 @@ public class AuthDialog : DialogContext protected override void OnConfiguring(DialogContextConfigureOptionsBuilder builder) { - builder.UseMaterialStyle() + builder.UseMaterialStyle() // bubuntoid.EasyDialog.MaterialSkin nuget package should be installed for using this theme .HasTitle("Authentification") .HasButton("Sign in");