Hi!! And merry Christmas to all! This time we will be learning about two things I have received questions about, they may be easy to confuse because both properties handle the same values and behaves similarly, I’m talking about the Padding and Margin properties, on many occasions we tend to use them as “equivalent” properties, but it is important to understand what the difference…
Tag: UI
Replicating great UI in Xamarin Forms
Hello, for this post I reproduced a super nice UI that was inspired by Mountain Trip Design and I listed the themes I used to build it! Tools that I used To replicate the Mountain Trip UI, I used the following tools: ?Visual State Manager – It allow us the make visual changes to our controls depending on the state.…
Getting started with Visual State Manager (VSM) in Xamarin Forms
When we are developing an application we usually face requirements that needs some visual changes depending of a specific control’s state. For example, we may need to increase the height of an Entry while the user is writing, but we may also need to modify the text color, the most important is that all of this must happen when the…
Adding custom fonts in Xamarin Forms
Often, when we need to apply a design we find different Fonts to which we think fits best with the design, for that reason use a custom Font. That’s what we’re going to be learning in this post!! Let’s start! For the example I will use the Cute Jelyfish font, you can find it here. The first that we have to learn is…
Replicating Facebook Profile UI in Xamarin Forms
Hello guys!! This time, I created a post that’s a little different than my usual posts, I built a Facebook Profile UI! So you’ll be able to the whole code, I will list the elements I used and leave some explanatory posts so you can understand them better in case you have not used them yet. Let me tell you…
Showing Design Time Data with XAML Previewer
From developer to developer, I would like to start this article by asking some questions: 1⃣ Have you ever experienced that you want to show the progress of the design of a screen and for this you need to add test data to the XAML so that the user can see the results, right? 2⃣ So after you convinced the…
Make your life simpler with the CollectionView’s Layouts 😎
CollectionView allows us display a list of data. It’s very similar to the ListView but this control enhances the performance and memory management of the list and covers different layout presentations such as: Vertical, horizontal and grid, making it a lot better and saving us our precious development time. This control is available from the version of Xamarin Forms 4.0.…
Header, footer and grouped information in our ListViews in Xamarin Forms
Nowadays, we work with applications that handle a big data sources and that frequently needs to be displayed in a ListView. Working with this control type, it’s important to know that if we just display all the data, it can be overwhelming for our users and that’s not the idea ?. As developers, in these cases we must try to make…
Simple way to create a Floating Button in Xamarin Forms
When we are creating some UI, there are some parts that may seem complicated, this may be true or not, it all depends on how we do the implementation, one example of this can be adding a Floating button in our screen, that’s why in this post we will be learning how to do this in a very simple way!.…
Applying Mask in Xamarin Forms
When we develop an Application, it’s important to take into consideration every feature possible to ease the user’s experience. Our brain behaves based on patterns, therefore, has the ability to understand certain information faster according to its presentation. For example: Without having to read a lot, we can see that “(809) 222-3333” is a telephone number. That’s why, in this post,…
Quick tips to decorate texts in Xamarin Forms
It has happened to all of us that we have to develop some pages full of texts without any feature else and as we know a lot of text together can overwhelm the user. That’s why in this post we will be learning to create it as friendly as possible to make our app’s user experience better. In this time we will…
Customizing browser appearance in Xamarin Forms
It’s too friendly when we see an Application with the perfect combination regarding Look & Feel. Some of these Apps needs to access to an external page, which forces us to use browsers that do not help us keep the color scheme used in our application.☹ But…What if I tell you that now you can change the appearance of your…
Converting Colors in Xamarin Forms
This time, I want to share with you this great feature. Let me tell you something, when I saw this functionality I really LOVED IT ? !!! Because I can play with the colors! ? In this post, we will be learning about the different functionalities that Xamarin Essentials bring to in the System.Drawing.Color library. This explanation will be divided in the following…
Let’s use the SearchBar control in Xamarin Forms
This time I will tell you about the SearchBar, which is a control that allows us make a search of a specific information between a set of these. To understand better, I will be display these topics in the following sets: ? SearchBar basic structure ? Implementing SearchBar Page Let’s start!!! SearchBar basic structure To understand better, is important to know…
Working with AbsoluteLayout in Xamarin Forms
Often, while developing an application we face situations where we have a design that needs to implement different layouts that are not the ones we normally use (For example: StackLayout, GridLayout). Some mockups have a more complex design in which we need to organize some graphic controls overlapping others. That’s why, now Im going to explain you an easy way to learn…