Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

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,
);
Source by api.flutter.dev #
 
PREVIOUS NEXT
Tagged: #radius #top #bottom #flutter
ADD COMMENT
Topic
Name
3+2 =