Answers for "flutter card only top ]border"

3

flutter container border only top

decoration: BoxDecoration(
          border: Border(
            top: BorderSide(width: 16.0, color: Colors.lightBlue.shade600),
            bottom: BorderSide(width: 16.0, color: Colors.lightBlue.shade900),
          ),
          color: Colors.white,
        ),
Posted by: Guest on December-16-2020
1

change card corner widget flutter

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