Answers for "border radius top only in flutter"

5

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

radius only top or bottom flutter

const BorderRadius.vertical({
  Radius top = Radius.zero,
  Radius bottom = Radius.zero,
}) : this.only(
  topLeft: top,
  topRight: top,
  bottomLeft: bottom,
  bottomRight: bottom,
);
Posted by: Guest on December-08-2021

Code answers related to "border radius top only in flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language