I just started learning Flutter and I have developed an app with GridView. GridView items are Card. Default card shape is Rectangle with a radius of 4.
I know there is s
An Alternative Solution to the above
Card( shape: RoundedRectangleBorder( borderRadius: BorderRadius.only(topLeft: Radius.circular(20), topRight: Radius.circular(20))), color: Colors.white, child: ... )
You can use BorderRadius.only() to customize the corners you wish to manage.