I have a problem with my Flutter Layout.
I have a simple container with a Margin right and left of 20.0 Inside this container i have another container.
But this container does not fit to the parent container only on the left side. I dont know why this happens.
Here is my Code:
@override
Widget build(BuildContext context) {
return new Scaffold(
backgroundColor: Colors.white,
body: new Container(
margin: new EdgeInsets.symmetric(horizontal: 20.0),
child: new Container(
)
),
);
}
You can use left and right values :)
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.white,
body: Container(
margin: const EdgeInsets.only(left: 20.0, right: 20.0),
child: Container(),
),
);
}