#if !(ANDROID || IOS || MACCATALYST || WINDOWS)
namespace gehGassi.Toolkit.Extensions.Window
{
public static partial class WindowExtensions
{
///
/// Forces application content to be displayed behind system bars (status and navigation bars) on Android and iOS.
///
/// The builder for your .NET MAUI application and services.
/// The builder.
public static MauiAppBuilder DisplayContentBehindBars(this MauiAppBuilder builder)
{
return builder;
}
}
}
#endif