Commit 4a8dbb0e authored by Hans Muller's avatar Hans Muller Committed by GitHub

Add a repaint boundary to the cards on the shrine order page (#5251)

parent 5a0589c7
......@@ -196,10 +196,15 @@ class _OrderPageState extends State<OrderPage> {
children: config.products
.where((Product product) => product != config.order.product)
.map((Product product) {
return new Card(
elevation: 0,
child: new Image.asset(product.imageAsset, fit: ImageFit.contain)
);
return new RepaintBoundary(
child: new Card(
elevation: 1,
child: new Image.asset(
product.imageAsset,
fit: ImageFit.contain
)
)
);
}).toList()
)
]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment