.Net MAUI

How to Show and Hide the Keyboard in .NET MAUI

As I always say, the more control we have over how elements behave in our apps, the better experience we can provide to users. In this article, weโ€™ll explore an interesting feature of the virtual keyboard: how to show or hide it strategically to improve usability. With .NET MAUI, you can achieve this easily in just a few steps. Letโ€™s…

Continue Reading

.Net MAUI, Images, UI

Problems loading a .gif in .NET MAUI?

Have you tried adding a .gif to your .NET MAUI application, but only see a still image and wonder why it doesn’t animate? ๐Ÿค” Well, today you will discover how to solve this quickly and easily! ๐Ÿš€โœจ Let’s start! GIFs are made up of a series of images that create a silent, repetitive animation. Adding a .gif to your application…

Continue Reading

.Net MAUI, UI

Creating an E-Book OnBoarding screen in .NET MAUI

Hello! ๐Ÿ™‹โ€โ™€๏ธ In this article, we’ll replicate an E-Book Onboarding UI, a design sourced from Dribbble. This piece will help you strengthen your skills in managing XAML in a quick and easy way. The most fun part is that you’ll learn to build it yourself! ๐Ÿ˜ Explanation Insights ๐Ÿ—’ Before diving in, here are some guidelines to enhance your experience…

Continue Reading

.Net MAUI, Xamarin

Timeline Xamarin Apps

Hello! ๐Ÿ™Œ Recently, I came across a post by David Ortinau that I found extremely helpful. Motivated by this, I chose to create a summary into an article format. ๐Ÿ“ In this post, you’ll find crucial information about important dates you need to know if you’re in the process of transitioning from Xamarin to .NET MAUI or if you’re still…

Continue Reading

.Net MAUI

Text Truncation and Wrapping in .NET MAUI

Imagine an app without text; it would be practically non-functional, wouldn’t it? ๐Ÿคทโ€โ™€๏ธ Text is an essential element in any application, and handling it appropriately according to different requirements is very important. In this article, we will focus on techniques for truncating and wrapping text using the LineBreakMode property to enhance the readability of our text. Let’s get started! ๐Ÿš€…

Continue Reading

.Net MAUI, .NET MAUI Community Toolkit

Exploring DockLayout from .NET MAUI Community Toolkit

While .NET MAUI layouts are extremely useful for developing graphical interfaces, it’s always nice to have additional options for arranging elements on the screen. In this article, you will learn about the DockLayout, a layout provided by the .NET MAUI Community Toolkit! To facilitate the understanding of this explanation, I will divide it into the following subtopics: ๐Ÿ”น .NET MAUI…

Continue Reading

.Net MAUI

Exploring the ProgressBar in .NET MAUI

When performing an operation that takes time, it’s crucial to inform users that a process is ongoing and that they need to wait before taking further action. Progress indicators are a good option to achieve this, as they visually show the percentage of progress that a process takes. In this article, we will learn how to use them in .NET…

Continue Reading

.Net MAUI

Toast in .NET MAUI

Consider the following scenario: you’re using an application, but your Internet connection goes down. As a result, the app can’t show the resources needed for interaction. Unfortunately, this sort of event happens frequently, so keeping the user informed is essential. One possible approach is to employ Toasts, which enable us to show informative text on the screen. In this article,…

Continue Reading

.Net MAUI, UI

Animating color properties using .NET MAUI Community Toolkit

Providing users with information about their interactions within apps is critical for ensuring a positive user experience. For example, if a user clicks on a button and the process takes a few seconds to respond, it’s important to indicate that their request is being executed. One option for accomplishing this is to change the button’s color and/or text and include…

Continue Reading

.Net MAUI, UI

Getting started with Image Caching in .NET MAUI

Have you ever wondered how to cache images in your app? .NET MAUI already includes this functionality! In this article, we will quickly learn how to use it and adapt it to our specific needs. The explanation will be divided into the following points: ๐Ÿ”น  How does image caching work? ๐Ÿ”น  Learning about its structure ๐Ÿ”น  Properties available  Letโ€™s start! How does image…

Continue Reading

.Net MAUI

Windows Sizing & Positioning in .NET MAUI

When developing your desktop applications in .NET MAUI, you can control both the size and position of your application windows. In this article you will learn how to do it very quickly! Let’s start! Preparing the stage First of all, you have to override the CreateWindows Methodย whichย allow you to handle the Window’s settings.ย Go to your App.xam.cs and add it!ย To overwrite…

Continue Reading

.Net MAUI, UI

Exploring Christmas UI in .NET MAUI

Merry Christmas! ๐ŸŽ„ I hope you are very well on these dates and you are happy with yours! ๐Ÿ’“ It’s a time where we usually set goals for the next year with the aim of continuing to grow every day! And to contribute to your goals of practicing XAML, I have brought you this article as my last gift of…

Continue Reading

.Net MAUI

Pointer gesture recognizer in .NET MAUI

We can now identify Pointer Gestures in .NET MAUI ! Which will allow us to add interactions, make decisions based on what our user is doing and in this way to be able to improve their experience! In this article we will learn to implement them in a very fast and easy way! Let’s start! Starting with Pointer Gestures Pointer Gesture…

Continue Reading