0

Found the same issue here. But the solution there not help me out.

Please have a look at the following screenshot of my xamarin forms ios app.

enter image description here

My problem is the previous page is showing behind the current screen. I am using visual studio for mac and Xcode 11.2.1 for development.

How can I get the fullscreen view for pages?

DerStarkeBaer
  • 669
  • 8
  • 28
Sreejith Sree
  • 3,055
  • 4
  • 36
  • 105

1 Answers1

1

The version of Xamarin.Forms in your project is still 3.3.x . Which could not compatible with the future in the latest version (4.3.x).So you should update the version of XF to at least 3.6.x .

Lucas Zhang
  • 18,630
  • 3
  • 12
  • 22
  • Updating XF to latest version working fine for .net standard projects. Unfortunately, 2 of my projects are PCL. That's why the above errors are coming. Do you have anything to add for the same issue in the PCL project? – Sreejith Sree Nov 15 '19 at 12:49
  • PCL had been obsoleted in VS 2019 . – Lucas Zhang Nov 15 '19 at 12:52
  • I tried to convert my PCL projects to .Net standard in VS 2019. Used `netstandard1.3` as `TargetFramework`. But getting below 3 errors at the final step. ![](https://us.v-cdn.net/5019960/uploads/editor/05/21xp1ldg8z5q.png "") – Sreejith Sree Nov 16 '19 at 10:51