// DragonX Wallet - ImGui Edition // Copyright 2024-2026 The Hush Developers // Released under the GPLv3 #pragma once namespace dragonx { class App; namespace ui { /** * @brief Render the Settings page (inline sidebar content, not a modal) * Consolidates items previously in File/Edit/Wallet/View/Help menus * into a single scrollable settings page with collapsible sections. */ void RenderSettingsPage(App* app); } // namespace ui } // namespace dragonx