Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Xamarin.Forms have designer support on VS?

I recently downloaded Xamarin.Forms as Microsoft made it free. I am looking around in Visual Studio for a visual designer, that is usually included in Xamarin.Droid and Xamarin.IOS. Is there no such feature for Xamarin.Forms? Surely I must be missing something ?

like image 839
user3889649 Avatar asked Jun 23 '16 18:06

user3889649


People also ask

Does Xamarin forms have a designer?

The Xamarin. Android Designer allows developers to create and modify declarative layouts visually, without requiring hand-editing of XML files. The Designer also provides real-time feedback that lets the developer evaluate UI changes without having to redeploy the application to a device or to an emulator.

Can I use Xamarin with VS code?

NET MAUI -- basically Xamarin. Forms supporting desktop apps -- can be used with Visual Studio Code, the super-popular, open source-based, cross-platform code editor.

Does Visual Studio 2022 support Xamarin?

NET 6, Visual Studio 2022 is now available, and we are happy to announce that Visual Studio 2022 also includes Xamarin support for Android 12, Apple's latest Xcode 13 releases of iOS, iPadOS, macOS, and tvOS, and the latest Xamarin.


2 Answers

No, Xamarin Forms does not have a drag and drop design surface. There is a live XAML previewer, but it is still in alpha release.

like image 86
Jason Avatar answered Oct 10 '22 22:10

Jason


Xamarin does not have a designer for Xamarin.Forms at this time, but is working on the Xamarin.Forms Previewer which renders a live preview of a Xamarin.Forms page side-by-side with the XAML markup directly inside the Visual Studio and Xamarin Studio IDEs.

You can open the Xamarin.Forms Previewer by clicking on View -> Other Windows -> Xamarin.Forms Previewer in the Visual Studio menu or alternatively just searching for Xamarin.Forms in the Visual Studio quicklaunch box.

In addition to the official Xamarin.Forms Previewer, there is at least one other third party tool that exists in this space as well:

  • Gorilla Player by UX Divers is a real time Xamarin.Forms previewer currently in beta that runs in both a simulator and on hardware devices.

Update (2018): There is now also the Xamarin Live Player for Xamarin.Forms that allows you visualize your XAML layouts running live on a physical device as you are developing them.

like image 31
Dan Rigby Avatar answered Oct 10 '22 22:10

Dan Rigby