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.
#include "imfluent.h"
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.
MIT — see LICENSE.txt.