Unverified Commit 3fbe1a59 authored by Kate Lovett's avatar Kate Lovett Committed by GitHub

Remove deprecation from RenderView (#73748)

parent 4feb18ca
......@@ -107,19 +107,6 @@ class RenderView extends RenderObject with RenderObjectWithChildMixin<RenderBox>
/// * [SystemChrome.setSystemUIOverlayStyle], for imperatively setting the system ui style.
bool automaticSystemUiAdjustment = true;
/// Bootstrap the rendering pipeline by scheduling the first frame.
///
/// Deprecated. Call [prepareInitialFrame] followed by a call to
/// [PipelineOwner.requestVisualUpdate] on [owner] instead.
@Deprecated(
'Call prepareInitialFrame followed by owner.requestVisualUpdate() instead. '
'This feature was deprecated after v1.10.0.'
)
void scheduleInitialFrame() {
prepareInitialFrame();
owner!.requestVisualUpdate();
}
/// Bootstrap the rendering pipeline by preparing the first frame.
///
/// This should only be called once, and must be called before changing
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment