DEV Community

Discussion on: Pro Flutter Navigation

Collapse
 
prakashselvaraj profile image
Prakash S

Navigator pushNamed accepts only one argument which is an Object type, So you can pass the desired argument as class/list or whatever object type which match your requirement.

Passing Data
Getting Data

also in your case

<String, String>{'bmiResult': '1', 'resultText': 'x', 'interpretation': 'y'}

you can use Map on the navigating page

MapDataArgument

Hope this answers you !!

Happy fluterring 😇😇!!