It’s important that the users can copy relevant texts from their applications. That’s why I explain you a simpler way to do it. Let’s see! We will follow these steps: Adding the Xamarin.Plugins.Clipboard Supported platforms Adding Copy/Paste actions in our applications Creating an example First of all.. What do I need? ✔ Add from NuGet Package the plugin: Xamarin.Plugins.Clipboard: Supports following platforms: Xamarin.Android…
Category: UI
Doing a Pull To Refresh in a ListView using Xamarin Forms
When we add a ListView control in our applications, normally we don’t see a loading control indicator while we wait for the data but there are some properties that help us to add this control. Let’s see! Let’s Start! How to add the PullToRefresh icon in the ListView? I show you bellow the way to create a ListView in the XAML. I…
How to work with advanced Pop-ups in Xamarin Forms
Normally, we can see some simple Pop-ups in applications that allow us display some information or some similar thing, but sometimes we need more power from them. In this post, I will show you how create advanced Pop-ups with Rg.Plugins.PopUp plugin in Xamarin Forms. We will cover the following topics: ✔ What plugin do I need ✔ Creating Pop-up page ✔ How to call the Pop-up ✔ Initializing on platforms ✔ Pop-up properties First…
A simple way to create a carousel in Xamarin Forms
Normally we can see screens in applications with components with swipe behavior within the same page. With CarouselPage we can create this. Let’s see! What is a CarouselPage? It’s a type of page with slides interaction in the same screen that we can swipe one by one, you can add images , labels and whatever virtual component that you need inside there. We can create it…
Working with signatures in Xamarin Forms
We all have gone through the experience of someone asking for our signature or while working on a project that demands or requires somehow a signature… So.. I was thinking about how can I do this in Xamarin Forms and I found it!? Let’s See! What about this Xamarin.Controls.SignaturePad.Forms? With this plugin you can create , save (In Jpeg, Jpg and…
How to work with Styles XAML in Xamarin Forms
Very often we need to create the same styles for differents visual controls and we have to repeat this code for each controls as we need. .. But what happend if we can create just one style for every control without code repetition..???… In this post I’ll show you how you can create the following in XAML: Global Styles Explicit styles Implicit…