PickerWithIcon icon indicating copy to clipboard operation
PickerWithIcon copied to clipboard

Customization

Open ivanteles opened this issue 4 years ago • 1 comments

How to add a rounded 3px border

ivanteles avatar Feb 25 '21 23:02 ivanteles

Hi, to customize border rounded, color and size it's necessary change the ShapeDrawable to GradientDrawable :

`GradientDrawable gradientDrawable = new GradientDrawable(); gradientDrawable.SetColor(Android.Graphics.Color.Transparent); gradientDrawable.SetCornerRadius(10); gradientDrawable.SetStroke(1, Android.Graphics.Color.LightGray);

Drawable[] layers = { gradientDrawable, GetDrawable(imagePath) };`

Regards.

mimunoz avatar Jun 23 '21 20:06 mimunoz