I'm trying to pass data to a new flutter page, except I do not want to navigate to the view where the information is being sent when I click the blue button. I'm using this code below, but on the web, it is weird to have an android-like transition.
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => ViewUserOutput(loadData: true)
)
);
I want to send the data directly to the yellow portion without having it display fullscreen like this:
Thanks
CodePudding user response: