When creating a AngularDart component, I can use ShadowRootAware
and override onShadowRoot
to be sure that the shadow dom is loaded and ready for manipulation, as described by the docs;
It is guaranteed that when [onShadowRoot] is invoked, that shadow DOM has been loaded and is ready.
However, if useShadowDom
is set to false, what alternative do I have that guarantees that the component or its content is loaded and ready to be manipulated?