Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 1.57 KB

File metadata and controls

37 lines (24 loc) · 1.57 KB

ImFluent

A Dear ImGui wrapper for providing widgets that adhere to Microsoft Fluent 2 design system.

A built-in ImFluent::ShowDemoWindow() reproduces the WinUI 3 Gallery shell with one demo page per control.

License

MIT — see LICENSE.

Use

#include "imfluent.h"

ImFluent::LoadFluentSystemFonts();
ImFluent::SetThemePreset(ImFluentThemePreset_Dark);

if (ImFluent::AccentButton("Sign in")) { /* ... */ }

static bool wifi = true;
ImFluent::ToggleSwitch("Wi-Fi", &wifi);

ImFluent::ShowDemoWindow();

Define IMFLUENT_DISABLE_DEMO_WINDOWS to compile out the demo.

image image image image image image image