xaml designer or previewer is not showing

Viewed 7125

Xamarin.Forms design view doesn't show for the preview of the .xaml What could I do? I looked for an answer and I did all the community recommendations but nothing works. I'm start thinking that Xamarin.Forms doesn't have a preview for .xaml I am right? or Where are those buttons? How could I get them?

enter image description here

This is my view: enter image description here

2 Answers

The XAML Previewer has been deprecated in Visual Studio 2019 version 16.8 and Visual Studio for Mac version 8.8, and replaced by the XAML Hot Reload feature in Visual Studio 2019 version 16.9 and Visual Studio for Mac version 8.9. Learn more about XAML Hot Reload in the documentation.

Source.

You may want to check Xamarin.Forms 5.0+ Live Visual Tree also.

Open the sln file of the project instead of the project folder in Visual Studio solved the problem for my case.

Related