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
You can also customize the card theme globally with ThemeData.cardTheme:
ThemeData.cardTheme
MaterialApp( title: 'savvy', theme: ThemeData( cardTheme: CardTheme( shape: RoundedRectangleBorder( borderRadius: const BorderRadius.all( Radius.circular(8.0), ), ), ), // ...