Is there a way to pass multiple index arguments to another screen using pushNamed?
问题 I'm trying to navigate to a new screen using ListViewBuilder and Cards. I currently have my named route set so that it accepts an index of my parsed json model. So the question is how do I pass the 'name' (String) parameter, as well as, 'nextEpisodes' (ListString) and 'prevEpisodes' (ListString). I'd like to access all of these variables on the next screen. Thanks in advance. ListView.builder( shrinkWrap: true, itemCount: slist.length, itemBuilder: (context, index) { print(slist[index]