#nullable enable
namespace Terminal.Gui;
public static partial class Application // Toplevel handling
{
// BUGBUG: Technically, this is not the full lst of TopLevels. There be dragons here, e.g. see how Toplevel.Id is used. What
/// Holds the stack of TopLevel views.
internal static Stack TopLevels { get; } = new ();
/// The that is currently active.
/// The top.
public static Toplevel? Top { get; internal set; }
}