I have a question. I need to add all borders to an entry in Android using Xamarin.Forms. I created the renderer class in the PCL and referenced it in the xaml file. Then I created the specific class for the renderer in the Android Project. I have this:
[assembly: ExportRenderer (typeof(EntryCustom), ypeof(EntryRendererCustom))]
namespace InstagramApp.Droid.Renderers
{
public class EntryRendererCustom : EntryRenderer
{
protected override void OnElementChanged(ElementChangedEventArgs<Entry>, e)
{
base.OnElementChanged(e);
if(Control != null)
{
}
}
}
}
Now i have to add the code in the IF statement but I'm new with xamarin and the renderers. Can someone help me? If someone can also explain me some basics on how to approach to the custom renderers it could be gold for me. Thanks all!