A cross-platform UI framework for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

27 lines
503 B

using System;
using System.Reactive.Disposables;
using Avalonia.Platform;
namespace Avalonia.iOS
{
class EmbeddableImpl : TopLevelImpl
{
public void SetTitle(string title)
{
}
public void SetMinMaxSize(Size minSize, Size maxSize)
{
}
public IDisposable ShowDialog()
{
return Disposable.Empty;
}
public void SetSystemDecorations(SystemDecorations enabled)
{
}
}
}