Interface FlutterUiDisplayListener
public interface FlutterUiDisplayListener
Listener invoked when Flutter starts and stops rendering pixels to an Android
View
hierarchy.-
Method Summary
Modifier and TypeMethodDescriptionvoid
Flutter started painting pixels to an AndroidView
hierarchy.void
Flutter stopped painting pixels to an AndroidView
hierarchy.
-
Method Details
-
onFlutterUiDisplayed
void onFlutterUiDisplayed()Flutter started painting pixels to an AndroidView
hierarchy.This method will not be invoked if this listener is added after the
FlutterRenderer
has started painting pixels. -
onFlutterUiNoLongerDisplayed
void onFlutterUiNoLongerDisplayed()Flutter stopped painting pixels to an AndroidView
hierarchy.
-