Dombie
Dombie

Reputation: 129

Difference between UWP and Xamarin's UWP?

I was trying to learn basics of xamarin. I came across Adding a Universal Windows Platform (UWP) App and I was trying to figure out advantages of using it over normal UWA with PCL or Shared projects. Is it different from UWP, or does it offers more support from portability?

Upvotes: 7

Views: 9852

Answers (3)

strypperjason115
strypperjason115

Reputation: 43

The answer is: NO No performance issues No developing issues Everything was converted down to the same assembly and run as you expected However, if you just do mainly in UWP. I suggest not doing it on Xamarin, because the support of new toys come a little bit slower on Xamarin. Right now the communities are waiting for XamlUI Alpha

Upvotes: 0

Miao
Miao

Reputation: 302

Xamarin Forms helps dev code once and deploy on cross-platforms. For front end, there are bit different when you code UWP and Xamarin Forms. stackpanel and stacklayout these kind of UI element. MS is working on XAML standard 1.0 so in future we only have one XAML need to remember.

If you are working on windows 10 app, highly recommended using UWP. There are more docs you can read. Lot of people using Xamarin Forms to create Android iOS cross-platform apps, and devs lost interesting in support xamarin forms plugins for UWP.

Upvotes: 3

Doncot
Doncot

Reputation: 78

does it offers more support from portability

Yes, or rather I should say that portability is the only practical reason you want to use Xamarin (aside from you being familiar with the platform and not wanting to learn something new, but this seems not to be the case).

Is it different from UWP

As far as I know, Xamarin's UWP is just a UWP project included inside a Xamarin project, so it's basically the same thing.

Upvotes: 0

Related Questions