onPressed: (){
Navigator.of(context).pushAndRemoveUntil(new MaterialPageRoute(builder: (context) => new MyProduct()), (route) => route == null);
},
//MyProduct改為要跳轉(zhuǎn)的頁面就可以了
onPressed: (){
Navigator.of(context).pushAndRemoveUntil(new MaterialPageRoute(builder: (context) => new MyProduct()), (route) => route == null);
},
//MyProduct改為要跳轉(zhuǎn)的頁面就可以了