Inheriting EntryRenderer shows "Obsolete since version 2.5.... Please use EntryRenderer(Context) instead"
If you change implementation, provide some instructions how to use it. It looks like Context is also obsolete,
No warnings should happen, or instructions should be provided
You can simply add a constructor that takes a Context object and pass that to the base, like this:
public MyEntryRenderer(Context context) : base(context)
{
}
It also documented here: https://www.davidbritch.com/2017/11/xamarinforms-25-and-local-context-in.html
@jfversluis Thanks, that works
Most helpful comment
You can simply add a constructor that takes a
Contextobject and pass that to the base, like this:It also documented here: https://www.davidbritch.com/2017/11/xamarinforms-25-and-local-context-in.html