diff --git a/packages/flutter/lib/src/rendering/view.dart b/packages/flutter/lib/src/rendering/view.dart index 57212c2eba4..d8c9b857dbd 100644 --- a/packages/flutter/lib/src/rendering/view.dart +++ b/packages/flutter/lib/src/rendering/view.dart @@ -107,19 +107,6 @@ class RenderView extends RenderObject with RenderObjectWithChildMixin /// * [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