Published
- 1 min read
flutter card border radius overflow hidden
The solution for this is noted below
flutter card border radius overflow hidden
Solution
Card(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(5.0),
),
clipBehavior: Clip.antiAlias,
..
.
.
)
Try other methods by searching on the site. That is if this doesn’t work