Hi,
I am building an app with a custom page renderer for android but the method needed cant be found to override:
[assembly: ExportRenderer(typeof(GoogleLoginPage), typeof(GoogleLogin_Android))]
namespace iBridge_RandstadMetaApp.Android
{
public class GoogleLogin_Android : PageRenderer
{
protected override void OnModelChanged(VisualElement oldModel, VisualElement newModel)
{
//base.OnModelChanged(oldModel, newModel);
var activity = this.Context as Activity;
}
}
}