Answers for "how to create doted container border in flutter"

1

flutter roudnd border container

Container(
   decoration: BoxDecoration(
    
   borderRadius: BorderRadius.all(Radius.circular(20))
 ),
 child: ...
)
Posted by: Guest on April-06-2021

Code answers related to "how to create doted container border in flutter"

Browse Popular Code Answers by Language