when I push new MaterialPageRoute "Child" it is created on the same level as MyApp widget in the Flutter widget tree. I would like to have it as a child of widget MyApp, so MyApp would be a parent of Child widget.
code link: https://dartpad.dev/?id=6fcea318ad98bc798f1360d52b805fb2
The current widget tree structure is as follow-
As you can see "Child" widget is sibling of Scaffold but I want it to be child of Scaffold.
