Trooper Q1: What is crucial for a startup to succeed?

Xamarin technology is an open-source platform created by Microsoft, which helps in creating cross-platform mobile development applications for IOS and Android apps. However, like any technology, it can help more or less. It all depends on how much we can use it in practice. I would like to share my knowledge and experience in creating software solutions in this technology.

 
 
 

The most important factor when choosing Microsoft Xamarin technology in the context of creating mobile applications is its maturity. At Leaware, we have built over one hundred mobile (ios Android) apps with projects using Xamarin technology. So far, we have not encountered the case that Xamarin prevented something in our projects.

 

As part of Microsoft Xamarin technology, many approaches to app development are available. You can use it, among others, as facilitation to use the C# language, but also in the context of full use of Microsoft Xamarin technology 70 or 90 % of shared code.

 

Fuller use of Xamarin is usually manifested in the amount of shared code between platforms.

 
 
 

The basic approach in which we use only C# does not allow code sharing. However, even this approach in itself has many advantages over native app development for many platforms.

 
 
 

Here are the most important of them:

 
  • We do not need to have specialists who know all three programming languages – objective c, java, C#

  • We create apps with one tool, Xamarin Studio, or Visual Studio, depending on the needs.

  • The implementation of algorithms is the same on all platforms – thanks to this, it is easier and easier to manage app development.

The whole snag is that Microsoft Xamarin technology gives a lot more than one programming language for creating cross-platform apps. The power of this technology lies in enabling code sharing between platforms. Imagine an app that connects via a web server to a server, downloads data from it, saves it to a local database, then generates unique QR codes based on this data, which are then displayed on the screen of your smartphone. Now imagine that when writing an app for Android, iOS, and Windows Microsoft has the following functionalities:

 
  • local database

  • web service support

  • code generation logic

Are common to all platforms. The unique thing is how we display this data on the smartphone screen.

 

Microsoft Xamarin technology, which draws a handful of .NET, provides a sharing code between platforms in several different ways. At Leaware, we use two methods. The first is the use of the MvvmCross framework, and the second is the increasingly popular Xamarin Forms. Both approaches have their pros and cons. The most important is the correct choice of development method that should be tailored to the requirements of the app.

 
 
 
Image
 
 
 
 
 

Definitions: Xamarin Native and Xamarin Forms

 

In the beginning, I will briefly introduce what is Xamarin Native and what is Xamarin Forms.

 
 
 

What is Xamarin Native? Platform features:

 

Xamarin Native allows you to write so-called native applications, i.e., those intended for one specific platform, such as Android or iOS, except that you write these apps using C #, not Java, Kotlin, Objective-C, or Swift. You can write the entire app as a single project, but if we have to write apps for both platforms, then it is enough to create projects containing business logic and share them between both platforms. However, UI and platform-specific functions must be established separately in each platform project.

 
 
 

What is Xamarin Forms? Platform features:

 

Xamarin Forms were created to build app development more cross-platform, and you can share even more percent of code ( using Visual Studio) so that just writing the app takes less time. Theoretically, most of the code responsible for the logic and appearance of the app can be shared between all platform applications. Only more advanced controls or platform-specific functions must be created for each platform separately.

 

These were the most important platform features for Xamarin Native and Xamarin Forms technology. Let’s go ahead and compare this Xamarin platform.

 
 
 

What is the difference between Xamarin native and Xamarin forms?

 

Comparison of both approaches to building mobile (IOS and Android) apps.

 
 
 

Code sharing

 

As I mentioned earlier, using the Xamarin environment, we can share most of the code. Using Xamarin Native or Xamarin Forms, you can share parts of the application, such as business logic, database layer, and network layer using Visual Studio to build the app. For Xamarin Forms, you can additionally share the application user interfaces.

 
 
 

Creating user interface

 

In Xamarin Native, we create application views separately for each platform, so for Android, we create standard layouts, as if we were creating them in a native project. Creating a user interface for iOS also looks the same as in the case of a native project, i.e., we create them using Xcode Interface Builder. In both cases, you can also use Android Designer or iOS Designer, respectively, which are built in Visual Studio.

 

With Xamarin Forms, views are created in XAML, which is then converted by the environment into native controls suitable for each platform. However, not all view elements have their counterparts on the other platform (e.g., Segmented Control with iOS). Then libraries that contain such controls come to the rescue. Although, although there are a lot of them and there are more and more of them, we will not always find one that suits us. Then we can use Custom Renderers that allow you to add small stylistic changes (although in this case, it’s better to use so-called effects), or create more sophisticated controls — besides, using Xamarin Forms, we have the option of using the so-called Hot Reload, which is intended to refresh the view when we save it in Visual Studio, so you can quickly see changes in the user interface, without having to recompile the entire application.

 
 
 

Xamarin Platform functions

 

If we want to use in our application functionalities that are implemented differently on a given platform, such as access to a file system, camera, location, etc., they must be handled appropriately on each platform separately. There are, of course, libraries and plugins, such as Xamarin. Essentials, which support most platform functions, but many of these functions need to be handled by themselves, such as notification support or integration with Facebook. There is a mechanism with Xamarin Forms called DependencyService that allows you to use these functions from a shared project. In Xamarin Native, there is no such built-in mechanism, and to be able to use it, it is best to use ready-made libraries that add this mechanism to our application.

 
 
 

In which cases should you choose Xamarin Native and in which Xamarin Forms?

 

If the app is to have sophisticated or suitably adapted views for a given platform, use many native functionalities that are not available for both platforms or contain complex animations, I would recommend using Xamarin Native. However, if the application is not very complicated, we have a smaller budget, and we want to release the mobile apps quickly, then I would use Xamarin Forms. Of course, you can use Xamarin Forms to make a beautiful and large application, but in my opinion, it will take more time and will cost more than when we use Xamarin Native. It is also worth remembering that applications created in Xamarin Forms take up more space and are slightly slower than those written natively.

 
 
 

Is it easy to start programming with Xamarin? Forms if you are an experienced Xamarin Native developer.

 

This is not a complicated process. First of all, you need to learn how to create views in XAML. If someone has ever dealt with the Windows Presentation Presentation or Universal Windows Platform, then there will be no significant problem in creating UI in Xamarin.Forms. Writing applications in Xamarin Forms are different from what Xamarin Native allows. However, I used Microsoft Xamarin with the xamarin MvvmCross framework for most projects, which will enable us to use mechanics such as DI (dependency injection), IoC (inversion of control) ) and much more, so some of the Forms techniques were much easier for me to learn. The only thing I had to learn so from the beginning was mechanics available only in Xamarin. Forms such as custom renderers, effects, etc., although they may seem complicated at first when you get to know them, they are not at all so terrible, but this is probably the case with learning every other thing.

 
 
 

Summary

 

To sum up the article and knowledge above. It remains to ask the question, “Is it worth it?” In my opinion, yes, although I would not recommend that you switch entirely to Xamarin.Forms because although both approaches have both their advantages and disadvantages because each application and the resources that we have at its disposal are different, it is worth knowing the different approaches that we can use and select them according to the needs of the application, client, or own.

About the Authors

Damian Wasilewski

Damian Wasilewski

Project Manager
Business Development Manager

Tom Soroka

Tom Soroka

Leaware Founder
Business Development Manager

Carlos Lopes

Carlos Lopes

Marketing Specialist
Business Development Manager

Do you want to know how to 
estimate the budget needed 
for your project?

    Lea-Logo
    clutch
    Dsesignrush
    Google
    Sortlist