Answers for "flutter change bottom border radius"

0

add only bottom border to container flutter

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 November-20-2020
3

flutter border radius

borderRadius: BorderRadius.all(Radius.circular(5.0))
Posted by: Guest on October-14-2020

Code answers related to "flutter change bottom border radius"

Browse Popular Code Answers by Language