// DragonX Wallet - ImGui Edition // Copyright 2024-2026 The Hush Developers // Released under the GPLv3 // // Lite-wallet "Network" tab: a card list of lightwalletd servers with latency + host/IP, an // official-server glow, random-vs-pinned selection, add-custom-server, and hide/unhide. Lite // builds only (full-node uses the Peers tab). See src/ui/windows/network_tab.cpp. #pragma once namespace dragonx { class App; namespace ui { void RenderLiteNetworkTab(App* app); } // namespace ui } // namespace dragonx