Make window visible and push it on the top of the window_stack

This method can be called at any times while the app is active.

Property definitions

app :: ui $ App :: push_window
	# Make `window` visible and push it on the top of the `window_stack`
	#
	# This method can be called at any times while the app is active.
	fun push_window(window: Window)
	do
		window_stack.add window
		self.window = window
		window.on_create
	end
lib/app/ui.nit:49,2--57,4

ios :: ui $ App :: push_window
	redef fun push_window(window)
	do
		set_view_controller(app_delegate.window, window.native)
		super
	end
lib/ios/ui/ui.nit:126,2--130,4