"Control" Property In Custom Renderers and Effects Is Null For Layouts
xamarin.forms
Solution
The `PlatformEffect` class has another property called `Container` which could also be used for the effect when the `Control` is null, e.g. at layouts.
Problem
When I try to write a custom renderer for any of the layout classes, the "Control" property appears null. It is OK since the renderer already is the wrapper for the native control but it is a problem when creating an Effect. So I cannot do any customization with the layout classes using Effects since Control property is not assigned. Is this a bug?