Pallavi
Pallavi

Reputation: 674

Common solution for Xamarin.UWP and Xamarin.Mac

I have a quick question, it would be great if anyone can clear it out. I wanted to develop a cross-platform application for Window OS and Mac OS.

I search it out a lot and found that we can create Window app with UWP and Mac OS app with the help of Xamarin.Mac but in that case, we are having a different solution for both Windows and Mac platform. We need a common solution for both the platform.

I will really appreciate if anyone can clarify how we need to proceed with the Cross-Platform development of Windows and Mac.

Upvotes: 2

Views: 204

Answers (1)

svn
svn

Reputation: 1408

The idea with xamarin is to separate UI and non UI code. You can share the non UI code between the UWP and Xamarin.Mac

Another approach is to use Xamarin.Forms which abstracts the UI code to be cross platform. The Xamarin.Forms implementation for Xamarin.Mac is stil in preview though

Upvotes: 2

Related Questions