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

diff --git a/examples/flutter_gallery/lib/demo/shrine/shrine_order.dart b/examples/flutter_gallery/lib/demo/shrine/shrine_order.dart
index 238f3d4..359b59e 100644
--- a/examples/flutter_gallery/lib/demo/shrine/shrine_order.dart
+++ b/examples/flutter_gallery/lib/demo/shrine/shrine_order.dart
@@ -196,10 +196,15 @@
             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()
           )
         ]