How To Give Shape To Card In Flutter

[Solved] How To Give Shape To Card In Flutter | Dart - Code Explorer | yomemimo.com
Question : shape property of card in flutter

Answered by : evil-eel-046eu18xdels

Card( elevation: 5, shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(10), ), child: ListTile(),
)

Source : | Last Update : Sat, 30 May 20

Question : how to give shape to card in flutter

Answered by : successful-skimmer-vkwdbdplluxr

Card( color: Colors.grey[900], shape: RoundedRectangleBorder( side: BorderSide(color: Colors.white70, width: 1), borderRadius: BorderRadius.circular(10), ), margin: EdgeInsets.all(20.0), child: Container( child: Column( children: <Widget>[ ListTile( title: Text( 'example', style: TextStyle(fontSize: 18, color: Colors.white), ), ), ], ), ),
),

Source : https://stackoverflow.com/questions/50756745/custom-card-shape-flutter-sdk | Last Update : Wed, 05 Aug 20

Question : shape property of card in flutter

Answered by : evil-eel-046eu18xdels

Card( elevation: 5, shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(10), ), child: ListTile(),
)

Source : | Last Update : Sat, 30 May 20

Answers related to how to give shape to card in flutter

Code Explorer Popular Question For Dart