This repository has been archived by the owner on May 1, 2024. It is now read-only.
-
Is there a way to run a Xamarin Forms app inside a UIWindowScene? I tried the below WillConnect() function for UIWindowSceneDelegate but I get this when trying to create the new UIWindow:
|
Beta Was this translation helpful? Give feedback.
Answered by
cncb-gh
Dec 16, 2021
Replies: 1 comment 2 replies
-
Turns out you need to implement the Window property like so: public override UIWindow Window { get; set; } |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
cncb-gh
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Turns out you need to implement the Window property like so:
public override UIWindow Window { get; set; }