Bootstrap the rendering pipeline by scheduling the first frame.
Source
void scheduleInitialFrame() {
assert(owner != null);
scheduleInitialLayout();
scheduleInitialPaint(new TransformLayer(transform: configuration.toMatrix()));
owner.requestVisualUpdate();
}