зеркало из https://github.com/DeGsoft/maui-linux.git
22 строки
422 B
C#
22 строки
422 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Xamarin.Forms.DualScreen
|
|
{
|
|
public static class DualScreenHelper
|
|
{
|
|
public static bool HasCompactModeSupport()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public static Task<CompactModeArgs> OpenCompactMode(ContentPage contentPage)
|
|
{
|
|
return Task.FromResult(new CompactModeArgs(null, false));
|
|
}
|
|
}
|
|
}
|