// List Item
StacGestureDetector(
onTap: StacNavigateAction(
routeName: '/detail',
),
child: StacHero(
tag: 'product-1',
child: StacImage(
network: 'https://example.com/product.png',
width: 100.0,
height: 100.0,
),
),
)
// Detail Page
StacHero(
tag: 'product-1',
child: StacImage(
network: 'https://example.com/product.png',
width: 300.0,
height: 300.0,
),
)