Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
FlutterUiDisplayListener.java
Go to the documentation of this file.
1// Copyright 2013 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5package io.flutter.embedding.engine.renderer;
6
7/**
8 * Listener invoked when Flutter starts and stops rendering pixels to an Android {@code View}
9 * hierarchy.
10 */
11public interface FlutterUiDisplayListener {
12 /**
13 * Flutter started painting pixels to an Android {@code View} hierarchy.
14 *
15 * <p>This method will not be invoked if this listener is added after the {@link FlutterRenderer}
16 * has started painting pixels.
17 */
19
20 /** Flutter stopped painting pixels to an Android {@code View} hierarchy. */
22}