Answers for "how to change border of card in flutter"

1

border radius to card flutter dart

Card(
      shape: RoundedRectangleBorder(
        borderRadius: BorderRadius.circular(15.0),
      ),
      child: Container() )
Posted by: Guest on June-01-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language