как сделать чтобы кнопки были вместе?
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
FlatButton(
onPressed: null,
child: Container(
width: 41.90,
height: 41.90,
decoration: BoxDecoration(
shape:
BoxShape.circle,
border: Border.all(
color: Color(0xff1254ff),
width: 2,
),
color: Colors.white,
),
child: Padding(
padding: EdgeInsets.all(3.0),
child: WebsafeSvg.asset(
"lib/res/photos/google-hangouts.svg"),
))),
FlatButton(
onPressed: null,
child: Container(
width: 41.90,
height: 41.90,
decoration: BoxDecoration(
shape:
BoxShape.circle,
border: Border.all(
color: Color(0xff1254ff),
width: 2,
),
color: Colors.white,
),
child: Padding(
padding: EdgeInsets.all(3.0),
child: WebsafeSvg.asset(
"lib/res/photos/facebook (1).svg"),
))),
FlatButton(
onPressed: null,
child: Container(
width: 41.90,
height: 41.90,
decoration: BoxDecoration(
shape:
BoxShape.circle,
border: Border.all(
color: Color(0xff1254ff),
width: 2,
),
color: Colors.white,
),
child: Padding(
padding: EdgeInsets.all(3.0),
child: WebsafeSvg.asset(
"lib/res/photos/github-logo.svg"),
))),
FlatButton(
onPressed: null,
child: Container(
width: 41.90,
height: 41.90,
decoration: BoxDecoration(
shape:
BoxShape.circle,
border: Border.all(
color: Color(0xff1254ff),
width: 2,
),
color: Colors.white,
),
child: Padding(
padding: EdgeInsets.all(3.0),
child:
Image.asset("lib/res/photos/email..png")
)))
],
)