Switches the current top screen to screen.
screen
This is equivalent to a pop followed by a push.
void goTo(Screen<T> screen) { var old = _screens.removeLast(); old._unbind(); screen._bind(this); _screens.add(screen); _render(); }