我不知道为什么会发生此错误以及如何解决此问题。这是代码。错误是从顶部到中间Widget的行。我以为()或[]可能还不够,但我无法弄清楚。如果有解决此类错误的任何技巧,我也想知道。谢谢。
Container(
child: Stack(
children: <Widget>[
Container(
margin: const EdgeInsets.only(top: 30.0),
decoration: BoxDecoration(color: Colors.pinkAccent),
),
Row(
children: <Widget>[
IconButton(
icon: Icon(FontAwesomeIcons.user),
onPressed: () {},
),
IconButton(
icon: Icon(Icons.location_on),
onPressed: () {},
),
Spacer(),
IconButton(
icon: Icon(Icons.playlist_add),
onPressed: () {},
),
IconButton(
icon: Icon(Icons.message),
onPressed: () {},
),
],
),
Center(
child: FloatingActionButton(
child: Icon(
Icons.grade,
color: Colors.pinkAccent,
),
backgroundColor: Colors.white,
onPressed: () {},
),
),
],
),
),