How to create a dotted border around a box in flutter?
EDIT I have added this as a package in pub. Now, all you need to do is DottedBorder( color: Colors.black, gap: 3, strokeWidth: 1, child: FlutterLogo(size: 148), ) Working Solution [Outdated] Like tomerpacific said in this answer, Flutter does not have a default implementation for dashed border at the moment. I worked for some time … Read more