PickerWithIcon
PickerWithIcon copied to clipboard
Customization
How to add a rounded 3px border
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.