Monday 29 October 2018

Segmented Control in Xamarin.Forms

Introduction

In this article, we are going to create segment control in xamarin.forms. Segmented Control is a horizontal bar, which is made up of multiple segments. Each segment works as a discrete button and it can display a title or an image. 

Saturday 13 October 2018

How to change ListView SelectedItem Bg Color in Xamarin.Forms

Introduction

This article describes how we can change ListView SelectedItem bg color in Xamarin.Forms. Sometimes we may need to set different bg color for ListView selected item, So in this article, we can learn how to achieve this functionality using CustomRenderer.

Friday 15 June 2018

Xamarin.Forms 3.0 Features: CSS support in Xaml

Introduction

In this article, we will learn how to apply styling to our Xamarin.Forms app with CSS and Xamarin.Forms version 3.0 new properties.

Friday 1 June 2018

Thursday 31 May 2018

Xamarin.Forms Mvvm: How To Send Local Notification With A Repeat Interval

Introduction

In this article, we will learn how to send Local Notifications for a particular date and time at a repeated interval (Day/Minute/HourDay/ etc.,).


Saturday 26 May 2018

How to disable copy, cut and paste options for Entry text in Xamarin.Forms

Introduction 
Sometimes for security reasons, we need to restrict the copy, cut and paste clipboard options for Entry in our app. For example adding payee through Online Banking and while entering passwords. So, in this article we can learn how to disable those options for Entry using CustomRenderers concept in Xamarin.Forms.
In my previous article explained Copy and Paste using Clipboard in Xamarin.Forms.