scoped_model icon indicating copy to clipboard operation
scoped_model copied to clipboard

Not Working error

Open afsatechnical opened this issue 2 years ago • 0 comments

return ScopedModelDescendant<CartModel>( builder: (context, child, model) { return Card( child: Column( children: <Widget>[ Image.network( 'http://192.168.29.11/apisync/image/product/' + _product[index]['img'], fit: BoxFit.fill, height: 350.0, width: 1000.0, ), Text(_product[index].name, style: TextStyle(fontWeight: FontWeight.bold),), Text("$"+_product[index].price.toString()), RaisedButton( child: Text("Add"), onPressed: () => model.addProduct(_product[index])) ])); });

afsatechnical avatar Jul 19 '22 13:07 afsatechnical