Answers for "top left border radious 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
3

make border rounded flutter

decoration: BoxDecoration(
  borderRadius: BorderRadius.circular(10)
),
Posted by: Guest on September-20-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language