itemBuilder: (context, index) => MyImage( image: API.image +'/' `your text`+snapshot.data[index['MainPicture'].toString(), title: snapshot.data[index]['productName'],`your text`
subname: snapshot.data[index]['productSubname'],`your text`
price: snapshot.data[index][price].toString(),`your text`
discount: '% ' +
snapshot.data[index]['productDiscount'].toString(),`your text`
),
我想让这些参数进入另一个屏幕your text
1条答案
按热度按时间v8wbuo2f1#
使用类似
go_router
的导航器稍后按照相应的步骤传递参数。
定义
传递参数
接收器小部件:
并参考以下答案:Flutter:go_router如何将多个参数传递给其他屏幕?