Answers for "round rectangular card in flutter"

5

shape property of card in flutter

Card(
  elevation: 5,
  shape: RoundedRectangleBorder(
  borderRadius: BorderRadius.circular(10),
  ),
  child: ListTile(),
)
Posted by: Guest on May-23-2020
1

shape property of card in flutter

Card(
  elevation: 5,
  shape: RoundedRectangleBorder(
  borderRadius: BorderRadius.circular(10),
  ),
  child: ListTile(),
)
Posted by: Guest on May-23-2020

Code answers related to "round rectangular card in flutter"

Browse Popular Code Answers by Language