We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab55a61 commit b5635adCopy full SHA for b5635ad
src/Controls/tests/DeviceTests/Elements/Button/ButtonTests.iOS.cs
@@ -17,7 +17,7 @@ UIButton GetPlatformButton(ButtonHandler buttonHandler) =>
17
18
Task<string?> GetPlatformText(ButtonHandler buttonHandler)
19
{
20
- return InvokeOnMainThreadAsync(() => GetPlatformButton(buttonHandler).CurrentTitle);
+ return InvokeOnMainThreadAsync(() => (string?)GetPlatformButton(buttonHandler).CurrentTitle);
21
}
22
23
UILineBreakMode GetPlatformLineBreakMode(ButtonHandler buttonHandler) =>
src/Essentials/test/UnitTests/Browser_Tests.cs
@@ -1,5 +1,6 @@
1
using System;
2
using System.Threading.Tasks;
3
+using Microsoft.Maui;
4
using Microsoft.Maui.ApplicationModel;
5
using Xunit;
6
0 commit comments