Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge the PublicAPI checker into main #7339

Merged
merged 26 commits into from
Jun 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
73724cd
Add Public API Analyzer to the Shipping products (#6003)
rmarinho May 19, 2022
1fb53ca
Merge remote-tracking branch 'origin/release/6.0.3xx' into dev/pub-api
mattleibow May 19, 2022
a706ccc
overrides are OK
mattleibow May 19, 2022
40c18c5
this too
mattleibow May 19, 2022
d70a8fa
and this
mattleibow May 19, 2022
27ca140
this
mattleibow May 19, 2022
46fdba8
Merge branch 'main' into dev/pub-api
rmarinho May 26, 2022
ea808fd
Merge branch 'main' into dev/pub-api
mattleibow May 26, 2022
05ee37e
Merge branch 'main' into dev/pub-api
mattleibow May 27, 2022
e2d8f01
Merge branch 'main' into dev/pub-api
mattleibow May 27, 2022
7941b12
ws
mattleibow May 27, 2022
661df2b
Merge remote-tracking branch 'origin/main' into dev/pub-api
mattleibow May 31, 2022
9cea83d
revert for now
mattleibow May 31, 2022
ea56e56
missing keyword
mattleibow May 31, 2022
ecf33ef
that
mattleibow May 31, 2022
0fecf25
Revert a type move for net6
mattleibow May 31, 2022
5bb928d
Merge branch 'dev/revert-for-net6' into dev/pub-api
mattleibow May 31, 2022
98fda28
Revert "that"
mattleibow May 31, 2022
077dc68
this
mattleibow May 31, 2022
680f26b
This was added to the wrong type
mattleibow May 31, 2022
9477640
this
mattleibow May 31, 2022
2bc6590
Merge branch 'dev/revert-for-net6' into dev/pub-api
mattleibow May 31, 2022
0947b99
:(
mattleibow May 31, 2022
a833656
APIs
mattleibow May 31, 2022
c5ecf74
some things for tizen
mattleibow May 31, 2022
134d6cd
Merge remote-tracking branch 'origin/main' into dev/pub-api
mattleibow Jun 1, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions src/Controls/src/Core/Controls.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<_MauiDesignDllBuild Condition=" '$(OS)' != 'Unix' And '$(MSBuildRuntimeType)' == 'Full'">True</_MauiDesignDllBuild>
<GitInfoReportImportance>high</GitInfoReportImportance>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<NoWarn>$(NoWarn);CS1591;RS0041;RS0026;RS0027;RS0022</NoWarn>
</PropertyGroup>

<Import Project="$(MauiNuSpecDirectory)Microsoft.Maui.Controls.MultiTargeting.targets" />
Expand All @@ -28,13 +28,19 @@
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
<PackageReference Include="Microsoft.Extensions.Logging" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" />
<PackageReference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" PrivateAssets="All" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetPlatformIdentifier)' == 'android' ">
<AndroidResource Include="Compatibility\Android\Resources\Layout\flyoutcontent.axml" />
<AndroidResource Include="Compatibility\Android\Resources\Layout\shellcontent.axml" />
</ItemGroup>


<ItemGroup>
<AdditionalFiles Include="PublicAPI\$(TargetFramework)\PublicAPI.Shipped.txt" />
<AdditionalFiles Include="PublicAPI\$(TargetFramework)\PublicAPI.Unshipped.txt" />
</ItemGroup>

<PropertyGroup Condition=" '$(_MauiDesignDllBuild)' == 'True'">
<TargetsForTfmSpecificBuildOutput>
$(TargetsForTfmSpecificBuildOutput);
Expand Down
19 changes: 19 additions & 0 deletions src/Controls/src/Core/Handlers/Items/iOS/TemplatedCell.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using System.ComponentModel;
using CoreGraphics;
using Foundation;
using Microsoft.Maui.Controls.Internals;
Expand Down Expand Up @@ -93,6 +94,24 @@ CGSize UpdateCellSize()
return size;
}

[Obsolete]
[EditorBrowsable(EditorBrowsableState.Never)]
protected void Layout(CGSize constraints)
{
var platformView = PlatformHandler.ToPlatform();

var width = constraints.Width;
var height = constraints.Height;

PlatformHandler.VirtualView.Measure(width, height);

platformView.Frame = new CGRect(0, 0, width, height);

var rectangle = platformView.Frame.ToRectangle();
PlatformHandler.VirtualView.Arrange(rectangle);
_size = rectangle.Size;
}

public void Bind(DataTemplate template, object bindingContext, ItemsView itemsView)
{
var oldElement = PlatformHandler?.VirtualView as View;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace Microsoft.Maui.Controls.Platform
public static class FormattedStringExtensions
{
public static SpannableString ToSpannableString(this Label label)
=> ToSpannableString(
=> ToSpannableStringNewWay(
label.FormattedText,
label.RequireFontManager(),
label.Handler?.MauiContext?.Context,
Expand All @@ -26,7 +26,28 @@ public static SpannableString ToSpannableString(this Label label)
label.TextTransform,
label.TextDecorations);

// TODO: NET7 this overload must be removed in net7.0 and replace with the one below
public static SpannableString ToSpannableString(
this FormattedString formattedString,
IFontManager fontManager,
TextPaint? textPaint = null,
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using TextPaint was incorrect as it did not represent the span size but the label. So the label would have a tiny font size and the span huge, but then layouts would measure line heights using the tine label size.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same as Windows. The above overload is the correct one.

Context? context = null,
double defaultLineHeight = 0,
TextAlignment defaultHorizontalAlignment = TextAlignment.Start,
Font? defaultFont = null,
Graphics.Color? defaultColor = null,
TextTransform defaultTextTransform = TextTransform.Default)
=> formattedString.ToSpannableStringNewWay(
fontManager,
context,
0d,
defaultHorizontalAlignment,
defaultFont,
defaultColor,
defaultTextTransform,
TextDecorations.None);

internal static SpannableString ToSpannableStringNewWay(
this FormattedString formattedString,
IFontManager fontManager,
Context? context = null,
Expand Down
9 changes: 8 additions & 1 deletion src/Controls/src/Core/Platform/Tizen/Shell/ShellView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,18 @@
using TImage = Tizen.UIExtensions.ElmSharp.Image;
using TNavigationView = Tizen.UIExtensions.ElmSharp.NavigationView;
using TSelectedItemChangedEventArgs = Tizen.UIExtensions.ElmSharp.SelectedItemChangedEventArgs;
using TThemeConstants = Tizen.UIExtensions.ElmSharp.ThemeConstants;
using TDPExtensions = Tizen.UIExtensions.ElmSharp.DPExtensions;

namespace Microsoft.Maui.Controls.Platform
{
public class ShellView : EBox, IFlyoutBehaviorObserver
{
// TODO: NET7 remove this for net7.0
public static readonly EColor DefaultBackgroundColor = TThemeConstants.Shell.ColorClass.DefaultBackgroundColor;
public static readonly EColor DefaultForegroundColor = TThemeConstants.Shell.ColorClass.DefaultForegroundColor;
public static readonly EColor DefaultTitleColor = TThemeConstants.Shell.ColorClass.DefaultTitleColor;

INavigationDrawer _navigationDrawer;
ITNavigationView _navigationView;
FlyoutHeaderBehavior _headerBehavior;
Expand Down Expand Up @@ -175,7 +181,8 @@ protected virtual void UpdateFlyoutIsPresented()
});
}

protected virtual void UpdateFlyoutWidth()
// TODO: NET7 make this public for net7.0
internal virtual void UpdateFlyoutWidth()
{
_ = Element ?? throw new InvalidOperationException($"{nameof(Element)} should have been set by base class.");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static void UpdateInlines(
this TextBlock textBlock,
IFontManager fontManager,
FormattedString formattedString,
double defaultLineHeight = -1d,
double defaultLineHeight = 0d, // TODO: NET7 should be -1, but too late to change for net6
TextAlignment defaultHorizontalAlignment = TextAlignment.Start,
Font? defaultFont = null,
Color? defaultColor = null,
Expand Down Expand Up @@ -76,7 +76,7 @@ public static void UpdateInlines(
public static IEnumerable<Tuple<Run, Color, Color>> ToRunAndColorsTuples(
this FormattedString formattedString,
IFontManager fontManager,
double defaultLineHeight = -1d,
double defaultLineHeight = 0d, // TODO: NET7 should be -1, but too late to change for net6
TextAlignment defaultHorizontalAlignment = TextAlignment.Start,
Font? defaultFont = null,
Color? defaultColor = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public static class FormattedStringExtensions
public static NSAttributedString ToNSAttributedString(
this FormattedString formattedString,
IFontManager fontManager,
double defaultLineHeight = -1d,
double defaultLineHeight = 0d, // TODO: NET7 should be -1, but too late to change for net6
TextAlignment defaultHorizontalAlignment = TextAlignment.Start,
Font? defaultFont = null,
Color? defaultColor = null,
Expand All @@ -54,7 +54,7 @@ public static NSAttributedString ToNSAttributedString(
public static NSAttributedString ToNSAttributedString(
this Span span,
IFontManager fontManager,
double defaultLineHeight = -1d,
double defaultLineHeight = 0d, // TODO: NET7 should be -1, but too late to change for net6
TextAlignment defaultHorizontalAlignment = TextAlignment.Start,
Font? defaultFont = null,
Color? defaultColor = null,
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
#nullable enable
override Microsoft.Maui.Controls.ContentView.OnApplyTemplate() -> void
override Microsoft.Maui.Controls.Grid.OnBindingContextChanged() -> void
~override Microsoft.Maui.Controls.Handlers.Compatibility.ViewCellRenderer.DisconnectHandler(Android.Views.View platformView) -> void
Comment on lines +2 to +4
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are overrides really breaking?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good question, i wouldn't think so.

Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
#nullable enable
override Microsoft.Maui.Controls.ContentView.OnApplyTemplate() -> void
override Microsoft.Maui.Controls.Grid.OnBindingContextChanged() -> void
override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.SetNeedsLayout() -> void
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
#nullable enable
override Microsoft.Maui.Controls.ContentView.OnApplyTemplate() -> void
override Microsoft.Maui.Controls.Grid.OnBindingContextChanged() -> void
override Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer.SetNeedsLayout() -> void
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
#nullable enable
override Microsoft.Maui.Controls.ContentView.OnApplyTemplate() -> void
override Microsoft.Maui.Controls.Grid.OnBindingContextChanged() -> void
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
#nullable enable
override Microsoft.Maui.Controls.ContentView.OnApplyTemplate() -> void
override Microsoft.Maui.Controls.Grid.OnBindingContextChanged() -> void
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
#nullable enable
override Microsoft.Maui.Controls.ContentView.OnApplyTemplate() -> void
override Microsoft.Maui.Controls.Grid.OnBindingContextChanged() -> void
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
#nullable enable
override Microsoft.Maui.Controls.ContentView.OnApplyTemplate() -> void
override Microsoft.Maui.Controls.Grid.OnBindingContextChanged() -> void
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
#nullable enable
override Microsoft.Maui.Controls.ContentView.OnApplyTemplate() -> void
override Microsoft.Maui.Controls.Grid.OnBindingContextChanged() -> void
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
#nullable enable
override Microsoft.Maui.Controls.ContentView.OnApplyTemplate() -> void
override Microsoft.Maui.Controls.Grid.OnBindingContextChanged() -> void
10 changes: 7 additions & 3 deletions src/Controls/src/Xaml/Controls.Xaml.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<RootNamespace>Microsoft.Maui.Controls.Xaml</RootNamespace>
<IsPackable>false</IsPackable>
<_MauiDesignDllBuild Condition=" '$(OS)' != 'Unix' And '$(MSBuildRuntimeType)' == 'Full'">True</_MauiDesignDllBuild>
<NoWarn>$(NoWarn);CA2200;CS1591</NoWarn>
<NoWarn>$(NoWarn);CA2200;CS1591;RS0041</NoWarn>
<PackageId>Microsoft.Maui.Controls.Xaml</PackageId>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
Expand All @@ -18,12 +18,16 @@
<ItemGroup>
<ProjectReference Include="..\Core\Controls.Core.csproj" />
<ProjectReference Include="..\..\..\Core\src\Core.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration" />
<PackageReference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" PrivateAssets="All" />
</ItemGroup>

<ItemGroup>
<Folder Include="Diagnostics\" />
<Folder Include="Hosting\" />
<AdditionalFiles Include="PublicAPI\$(TargetFramework)\PublicAPI.Shipped.txt" />
<AdditionalFiles Include="PublicAPI\$(TargetFramework)\PublicAPI.Unshipped.txt" />
</ItemGroup>

<PropertyGroup Condition=" '$(_MauiDesignDllBuild)' == 'True'">
Expand Down
7 changes: 6 additions & 1 deletion src/Core/src/Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<NoWarn>$(NoWarn);CS1591;RS0041;RS0026;RS0027</NoWarn>
</PropertyGroup>
<Import Project="$(MauiNuSpecDirectory)Microsoft.Maui.Controls.MultiTargeting.targets" />
<ItemGroup>
Expand All @@ -16,11 +16,16 @@
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" />
<PackageReference Include="Microsoft.Maui.Graphics" />
<PackageReference Include="System.Numerics.Vectors" Condition="$(TargetFramework.StartsWith('netstandard'))" />
<PackageReference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" PrivateAssets="All" />
</ItemGroup>
<ItemGroup Condition="$(TargetFramework.Contains('-android'))">
<PackageReference Include="Xamarin.Android.Glide" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Essentials\src\Essentials.csproj" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="PublicAPI\$(TargetFramework)\PublicAPI.Shipped.txt" />
<AdditionalFiles Include="PublicAPI\$(TargetFramework)\PublicAPI.Unshipped.txt" />
</ItemGroup>
</Project>
3 changes: 2 additions & 1 deletion src/Core/src/Graphics/MauiDrawable.Android.cs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,8 @@ public void SetBorderBrush(RadialGradientPaint radialGradientPaint)
InvalidateSelf();
}

public void SetEmptyBorderBrush()
// TODO: NET7 make public for net7.0
internal void SetEmptyBorderBrush()
{
_invalidatePath = true;

Expand Down
6 changes: 0 additions & 6 deletions src/Core/src/Platform/iOS/MauiUIApplicationDelegate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,6 @@ public virtual void OnResignActivation(UIApplication application)
Services?.InvokeLifecycleEvents<iOSLifecycle.OnResignActivation>(del => del(application));
}

[Export("sceneDidDisconnect:")]
public void DidDisconnect(UIScene scene)
{
Services?.InvokeLifecycleEvents<iOSLifecycle.SceneDidDisconnect>(del => del(scene));
}

[Export("applicationWillTerminate:")]
public virtual void WillTerminate(UIApplication application)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2642,7 +2642,7 @@ static Microsoft.Maui.Keyboard.Plain.get -> Microsoft.Maui.Keyboard!
static Microsoft.Maui.Keyboard.Telephone.get -> Microsoft.Maui.Keyboard!
static Microsoft.Maui.Keyboard.Text.get -> Microsoft.Maui.Keyboard!
static Microsoft.Maui.Keyboard.Url.get -> Microsoft.Maui.Keyboard!
static Microsoft.Maui.Layouts.FlexBasis.Auto -> Microsoft.Maui.Layouts.FlexBasis
static readonly Microsoft.Maui.Layouts.FlexBasis.Auto -> Microsoft.Maui.Layouts.FlexBasis
static Microsoft.Maui.Layouts.FlexBasis.implicit operator Microsoft.Maui.Layouts.FlexBasis(float length) -> Microsoft.Maui.Layouts.FlexBasis
static Microsoft.Maui.Layouts.LayoutExtensions.AdjustForFill(this Microsoft.Maui.Graphics.Size size, Microsoft.Maui.Graphics.Rect bounds, Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Size
static Microsoft.Maui.Layouts.LayoutExtensions.ArrangeContent(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Graphics.Rect bounds) -> void
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
#nullable enable
override Microsoft.Maui.MauiAppCompatActivity.OnDestroy() -> void
2 changes: 1 addition & 1 deletion src/Core/src/PublicAPI/net6.0-ios/PublicAPI.Shipped.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2523,7 +2523,7 @@ static Microsoft.Maui.Keyboard.Plain.get -> Microsoft.Maui.Keyboard!
static Microsoft.Maui.Keyboard.Telephone.get -> Microsoft.Maui.Keyboard!
static Microsoft.Maui.Keyboard.Text.get -> Microsoft.Maui.Keyboard!
static Microsoft.Maui.Keyboard.Url.get -> Microsoft.Maui.Keyboard!
static Microsoft.Maui.Layouts.FlexBasis.Auto -> Microsoft.Maui.Layouts.FlexBasis
static readonly Microsoft.Maui.Layouts.FlexBasis.Auto -> Microsoft.Maui.Layouts.FlexBasis
static Microsoft.Maui.Layouts.FlexBasis.implicit operator Microsoft.Maui.Layouts.FlexBasis(float length) -> Microsoft.Maui.Layouts.FlexBasis
static Microsoft.Maui.Layouts.LayoutExtensions.AdjustForFill(this Microsoft.Maui.Graphics.Size size, Microsoft.Maui.Graphics.Rect bounds, Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Size
static Microsoft.Maui.Layouts.LayoutExtensions.ArrangeContent(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Graphics.Rect bounds) -> void
Expand Down
5 changes: 5 additions & 0 deletions src/Core/src/PublicAPI/net6.0-ios/PublicAPI.Unshipped.txt
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
#nullable enable
override Microsoft.Maui.Platform.ContentView.SetNeedsLayout() -> void
override Microsoft.Maui.Platform.LayoutView.HitTest(CoreGraphics.CGPoint point, UIKit.UIEvent? uievent) -> UIKit.UIView!
override Microsoft.Maui.Platform.LayoutView.SetNeedsLayout() -> void
override Microsoft.Maui.Platform.LayoutView.UserInteractionEnabled.get -> bool
override Microsoft.Maui.Platform.LayoutView.UserInteractionEnabled.set -> void
Original file line number Diff line number Diff line change
Expand Up @@ -2522,7 +2522,7 @@ static Microsoft.Maui.Keyboard.Plain.get -> Microsoft.Maui.Keyboard!
static Microsoft.Maui.Keyboard.Telephone.get -> Microsoft.Maui.Keyboard!
static Microsoft.Maui.Keyboard.Text.get -> Microsoft.Maui.Keyboard!
static Microsoft.Maui.Keyboard.Url.get -> Microsoft.Maui.Keyboard!
static Microsoft.Maui.Layouts.FlexBasis.Auto -> Microsoft.Maui.Layouts.FlexBasis
static readonly Microsoft.Maui.Layouts.FlexBasis.Auto -> Microsoft.Maui.Layouts.FlexBasis
static Microsoft.Maui.Layouts.FlexBasis.implicit operator Microsoft.Maui.Layouts.FlexBasis(float length) -> Microsoft.Maui.Layouts.FlexBasis
static Microsoft.Maui.Layouts.LayoutExtensions.AdjustForFill(this Microsoft.Maui.Graphics.Size size, Microsoft.Maui.Graphics.Rect bounds, Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Size
static Microsoft.Maui.Layouts.LayoutExtensions.ArrangeContent(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Graphics.Rect bounds) -> void
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
#nullable enable
override Microsoft.Maui.Platform.ContentView.SetNeedsLayout() -> void
override Microsoft.Maui.Platform.LayoutView.HitTest(CoreGraphics.CGPoint point, UIKit.UIEvent? uievent) -> UIKit.UIView!
override Microsoft.Maui.Platform.LayoutView.SetNeedsLayout() -> void
override Microsoft.Maui.Platform.LayoutView.UserInteractionEnabled.get -> bool
override Microsoft.Maui.Platform.LayoutView.UserInteractionEnabled.set -> void
Original file line number Diff line number Diff line change
Expand Up @@ -2438,7 +2438,7 @@ static Microsoft.Maui.Keyboard.Plain.get -> Microsoft.Maui.Keyboard!
static Microsoft.Maui.Keyboard.Telephone.get -> Microsoft.Maui.Keyboard!
static Microsoft.Maui.Keyboard.Text.get -> Microsoft.Maui.Keyboard!
static Microsoft.Maui.Keyboard.Url.get -> Microsoft.Maui.Keyboard!
static Microsoft.Maui.Layouts.FlexBasis.Auto -> Microsoft.Maui.Layouts.FlexBasis
static readonly Microsoft.Maui.Layouts.FlexBasis.Auto -> Microsoft.Maui.Layouts.FlexBasis
static Microsoft.Maui.Layouts.FlexBasis.implicit operator Microsoft.Maui.Layouts.FlexBasis(float length) -> Microsoft.Maui.Layouts.FlexBasis
static Microsoft.Maui.Layouts.LayoutExtensions.AdjustForFill(this Microsoft.Maui.Graphics.Size size, Microsoft.Maui.Graphics.Rect bounds, Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Size
static Microsoft.Maui.Layouts.LayoutExtensions.ArrangeContent(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Graphics.Rect bounds) -> void
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1938,7 +1938,6 @@ override Microsoft.Maui.Handlers.ViewHandler<TVirtualView, TPlatformView>.SetupC
override Microsoft.Maui.Handlers.WebViewHandler.ConnectHandler(Microsoft.UI.Xaml.Controls.WebView2! platformView) -> void
override Microsoft.Maui.Handlers.WebViewHandler.CreatePlatformView() -> Microsoft.UI.Xaml.Controls.WebView2!
override Microsoft.Maui.Handlers.WebViewHandler.DisconnectHandler(Microsoft.UI.Xaml.Controls.WebView2! platformView) -> void
override Microsoft.Maui.Handlers.WindowHandler.ConnectHandler(Microsoft.UI.Xaml.Window! platformView) -> void
override Microsoft.Maui.Handlers.WindowHandler.CreatePlatformElement() -> Microsoft.UI.Xaml.Window!
override Microsoft.Maui.Handlers.WindowHandler.DisconnectHandler(Microsoft.UI.Xaml.Window! platformView) -> void
override Microsoft.Maui.Layouts.AbsoluteLayoutManager.ArrangeChildren(Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size
Expand Down Expand Up @@ -2453,7 +2452,7 @@ static Microsoft.Maui.Keyboard.Plain.get -> Microsoft.Maui.Keyboard!
static Microsoft.Maui.Keyboard.Telephone.get -> Microsoft.Maui.Keyboard!
static Microsoft.Maui.Keyboard.Text.get -> Microsoft.Maui.Keyboard!
static Microsoft.Maui.Keyboard.Url.get -> Microsoft.Maui.Keyboard!
static Microsoft.Maui.Layouts.FlexBasis.Auto -> Microsoft.Maui.Layouts.FlexBasis
static readonly Microsoft.Maui.Layouts.FlexBasis.Auto -> Microsoft.Maui.Layouts.FlexBasis
static Microsoft.Maui.Layouts.FlexBasis.implicit operator Microsoft.Maui.Layouts.FlexBasis(float length) -> Microsoft.Maui.Layouts.FlexBasis
static Microsoft.Maui.Layouts.LayoutExtensions.AdjustForFill(this Microsoft.Maui.Graphics.Size size, Microsoft.Maui.Graphics.Rect bounds, Microsoft.Maui.IView! view) -> Microsoft.Maui.Graphics.Size
static Microsoft.Maui.Layouts.LayoutExtensions.ArrangeContent(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Graphics.Rect bounds) -> void
Expand Down
Loading