Skip to content

Commit 1cb1fa7

Browse files
Copilotkazo0
andcommitted
fix: Add missing using statement for SystemNavigationManager
Added explicit 'using Windows.UI.Core;' to ResponseNavigator.cs to resolve build error. SystemNavigationManager is in the Windows.UI.Core namespace, which is only included globally for non-WINUI platforms. Co-authored-by: kazo0 <4793020+kazo0@users.noreply.github.com>
1 parent 45cc8c0 commit 1cb1fa7

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/Uno.Extensions.Navigation.UI/ResponseNavigator.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
namespace Uno.Extensions.Navigation;
1+
using Windows.UI.Core;
2+
3+
namespace Uno.Extensions.Navigation;
24

35
public class ResponseNavigator<TResult> : IResponseNavigator, IInstance<IServiceProvider>
46
{

0 commit comments

Comments
 (0)