Xamarin Forms Application with F # in Visual Studio

Is there a template for one of them in Visual Studio? I can not find one installed or online.

+4
source share
1 answer

No. There is one for Xamarin Studio, but it will not work in Visual Studio.

You can create a C # solution "Xamarin.Forms Portable" that will create applications on a C # platform and then replace the common C # PCL with F # PCL for cross-platform development. You just need to Install-Package Xamarin.Formsin F # PCL and it should work. (You can also create and reference F # PCL for platform code if you wish.)

+2
source

All Articles