Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

xamarin

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?

like image 614
Nathaniel S Avatar asked May 26 '16 15:05

Nathaniel S


People also ask

Can Xamarin be used for iOS?

Xamarin. iOS allows developers to create native iOS applications using the same UI controls that are available in Objective-C and Xcode, except with the flexibility and elegance of a modern language (C#), the power of the .

Can Xamarin be used for Web development?

Xamarin allows developers to develop iOS, Android, and Windows applications for enterprises using C programming language, NET Framework, and Microsoft.

How can I develop an app for both iOS and Android?

With the help of Flutter It is a mobile UI framework offered by Google that makes it possible to build iOS & Android native apps on both platforms, using a single codebase in a fast and expressive way. Flutter development is carried out using the Dart – a programming language proposed by Google as well.

How Xamarin is used for native Android and iOS development?

Xamarin Forms enable fast prototyping with built-in UI libraries, adapted both to Android and iOS; Rich access to native APIs – just like in native apps, you can get access to the user's Bluetooth, camera, microphone.


1 Answers

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.

like image 114
Jason Avatar answered Sep 29 '22 12:09

Jason