Answers for "flutter container border radius only left"

6

flutter container border radius only left

borderRadius: BorderRadius.only(
          topRight: Radius.circular(10.0),
          bottomRight: Radius.circular(10.0)),
Posted by: Guest on February-08-2021
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 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

Code answers related to "flutter container border radius only left"

Code answers related to "Dart"

Browse Popular Code Answers by Language