Skip to content

Instantly share code, notes, and snippets.

View gitbash-basher's full-sized avatar

gitbash-basher

View GitHub Profile
<?xml version="1.0" encoding="utf-8" ?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" >
<shape>
<solid android:color="#C1CDE2" />
<corners android:radius="6dp" />
<padding android:left="10dp" android:top="10dp" android:right="10dp" android:bottom="10dp" />
</shape>
</item>
<item>
using Android.Content;
using Android.Graphics;
using Android.Views;
using SampleCode.Custom;
using SampleCode.Droid.Custom;
using Xamarin.Forms;
using Xamarin.Forms.Platform.Android;
[assembly: ExportRenderer(typeof(CustomButton), typeof(CustomButtonRenderer))]
namespace SampleCode.Droid.Custom