Nathaniel S
Nathaniel S

Reputation: 335

Can Xamarin be used to produce a iOS, Android AND WEB app?

Xamarin is designed to create native iOS, Android, and Windows apps by coding it in C#. But can it also produce a web app?

If not, is there some solution that would enable us to do that?

Upvotes: 11

Views: 6762

Answers (1)

Jason
Jason

Reputation: 89214

You can write your backend code (services, data, domain, business logic, etc) in PCL libraries that can be shared between your Mobile apps and your website. But the web frontend would need to be written separately than the mobile front-ends.

Upvotes: 7

Related Questions