File: HostBuilderExtensions.cs
Web Access
Project: src\src\Controls\Foldable\src\Controls.Foldable.csproj (Microsoft.Maui.Controls.Foldable)
using Microsoft.Maui.Hosting;
 
namespace Microsoft.Maui.Foldable
{
	public static partial class HostBuilderExtensions
	{
		// see Android/HostBuilderExtension.cs for the real implementation
#if !ANDROID
		public static MauiAppBuilder UseFoldable(this MauiAppBuilder builder) =>
			builder;
#endif
	}
}