how to give colour border to container in flutter code example
Example: container border flutter
BoxDecoration myBoxDecoration() {
return BoxDecoration(
border: Border.all(),
);
}
BoxDecoration myBoxDecoration() {
return BoxDecoration(
border: Border.all(),
);
}