Fixed the build
This commit is contained in:
Родитель
8ce1dd1c9d
Коммит
175bcfa1cf
|
@ -3,6 +3,7 @@ using Android.App;
|
|||
using Android.Runtime;
|
||||
using Microsoft.Maui;
|
||||
using Comet.Samples;
|
||||
using Microsoft.Maui.Hosting;
|
||||
|
||||
namespace Comet.Android.Sample
|
||||
{
|
||||
|
|
|
@ -6,6 +6,7 @@ using MapKit;
|
|||
using UIKit;
|
||||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.HotReload;
|
||||
using Microsoft.Maui.Hosting;
|
||||
|
||||
namespace Comet.iOS.Sample
|
||||
{
|
||||
|
|
|
@ -14,7 +14,7 @@ namespace Comet
|
|||
public ILayoutManager LayoutManager => layout ??= CreateLayoutManager();
|
||||
public ILayoutHandler LayoutHandler => ViewHandler as ILayoutHandler;
|
||||
|
||||
Thickness ILayout.Padding => this.GetPadding();
|
||||
Thickness IPadding.Padding => this.GetPadding();
|
||||
|
||||
protected override void OnAdded(View view)
|
||||
{
|
||||
|
|
|
@ -757,6 +757,8 @@ namespace Comet
|
|||
|
||||
public string Title => this.GetTitle();
|
||||
|
||||
IShadow IView.Shadow => this.GetEnvironment<IShadow>(nameof(IView.Shadow));
|
||||
|
||||
Size IView.Arrange(Rectangle bounds)
|
||||
{
|
||||
LayoutSubviews(bounds);
|
||||
|
|
|
@ -52,5 +52,7 @@ namespace Comet
|
|||
{
|
||||
|
||||
}
|
||||
|
||||
bool IWindow.BackButtonPressed() => true;
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче