get View
Returns a View that displays the plan.
Each call returns a new lightweight host container. Calling this method has no effect on the screen currently showing the plan: the plan content is displayed in the most recently attached host, and when that host leaves the window (for example, the hosting screen is destroyed on back navigation) the content automatically returns to the previous host that is still attached. The plan is visible in only one host at a time.
The returned View is a self-sizing container that fills its parent (MATCH_PARENT), so it can be hosted directly (for example in a Compose AndroidView) without extra wrapping.
Call this method once per screen and keep the result for that screen's lifetime. Do not compare results of different calls by identity, do not cast the result to a concrete View subtype such as WebView, and call it only from the main thread.
Do not call this method after disposal of the presenter has started. This includes explicit disposal of a preloaded plan and automatic disposal of a non-preloaded presenter when its bound LifecycleOwner is destroyed. Calls made after disposal has started return an empty inert host that never displays the plan.