I'm trying to make the app Startscreen funtion so that it automatically loads the screen based on. the device (Mobile & Desktop)
I added this to the StartScreen property
If(App.Width> 600, DesktopScreen, MobileScreen)
Also tried this one
If(App.ActiveScreen.Width = ScreenSize.Small, MobileScreen, DesktopScreen)
Both of these dont work