bordeer to container flutter code example
Example 1: flutter container border
Container(
decoration: BoxDecoration(
border: Border.all(
color: Colors.red, // red as border color
),
),
child: Text("Your text...")
)
Example 2: container border flutter
BoxDecoration myBoxDecoration() {
return BoxDecoration(
border: Border.all(),
);
}