
It is possible to earn money by adding AdMob ads to your Xamarin.Forms applications. However, to do this, you must first create Dependecy classes for each ad unit on native platforms and then call…
Read articleTopic archive · 16 notes
Practical articles, implementation notes, and lessons learned from real software projects.

It is possible to earn money by adding AdMob ads to your Xamarin.Forms applications. However, to do this, you must first create Dependecy classes for each ad unit on native platforms and then call…
Read article
In mobile applications, it is important to have permanent data. Because mobile applications are not a web application, they may not always be connected to the internet. In such cases, it is better to…
Read article
In this article, I will explain the use of custom fonts in your Xamarin.Forms applications and how to use platform-specific font. So, let’s started. Follow the steps below in order. 1) Download the font(s)…
Read article
Resource Dictionaries is a repository of resources created to customize XAML views. These resources include properties of view items such as colors, controls, data templates. So when you want to customize a view element,…
Read article
Syncfusion is a software company that creates software components and tools for the Microsoft .NET platform, including user interfaces and reporting tools. It includes more than 1600 components and frameworks for Windows Forms, WPF,…
Read article
Microsoft held its annual Microsoft Build conference for developers using Windows, Xamarin, Microsoft Azure and other Microsoft technologies in May 2020. This conference had important news for mobile application developers. .NET Multiplatform App UI,…
Read article
In Xamarin applications, we sometimes see that the views move in a connected way or a UI element is updated dynamically. We can also do this in our own applications. How Does? Of course…
Read article
MVVM (Model - View - ViewModel) model separates the business and presentation layers of an application from the user interface. This separation helps make testing, maintenance, and development of an application easier. Naturally, it…
Read article
We usually see plain splash screens in mobile applications. But what should you do if you want to view an animated splash screen? Here, this post is for you. Alternatively, you can make your…
Read article
We all know popups. We use popups when the user needs to confirm or reject a selection. Or sometimes we display it in the middle of the screen to show warning messages. Thus, we…
Read article
Grouping sequential data to reduce data complexity after connecting data to ListView in mobile apps is a good solution. We often see this when enumerating saved contacts in phonebook and messaging applications. It may…
Read article
I will get the data from the service and then show this data in ListView. Here, the number of patients, recovered, deaths, etc. for each country are shown.
Read article
Presenting data on graphs is a good solution to increase the user experience in the applications you develop. So you get more readable and visually beautiful views. Make sure that the end user is…
Read article
While developing a mobile application, do you sometimes need to send feedback to the user after his actions? Even without disturbing the functioning of the application. It is possible to do this with Toast…
Read article
We show it sometimes on the screen or in the notification bar to show any progress within the program. For example, when downloading a file, what percentage of the download is in the notification…
Read article
Our motivation in this post, get first five news from newsapi and show it in a CarouselView. Also, I used PancakeView plugin to make beautiful design. You can learn how to use PancakeView from…
Read article