Closed
Description
I am new to Flutter. Working through the Material tutorial, the product images were not being clipped at the rounded card edges:
As the linked Flutter issue describes, it's now required to specify the clip behavior of the card:
return Card(
+ clipBehavior: Clip.antiAlias,
// TODO: Adjust card heights (103)
child: Column(
As an aside, adding/changing that parameter and letting Hot Reload do its thing did not result in the cards being repainted with the proper clipping behavior. I had to Hot Restart the app on the device to make the change stick. Perhaps I am doing something wrong or this is another (Flutter? Material?) bug.