I have a custom content control based on Xamarin forms views the problem is that when it renders and when It tries to get its Custom Children the container is null
The Control xaml is atached
and in code behind
I have the property
public IList Children
{
get { return ContentLayout.Children; }
}
and on the top of the class the following attribute
[ContentProperty("Children")]
The problem Im having is that when Children is called at the beginning ContentLayout is null anyone have any work around for this issue?