我的actions
中有AppBar
,我想知道在AppBar
溢出之前我可以安全地放多少物品。
appBar: AppBar(
title: Text("Overflowing"),
actions: <Widget>[
IconButton(icon: Icon(Icons.call), onPressed: () {}),
IconButton(icon: Icon(Icons.call_end), onPressed: () {}),
IconButton(icon: Icon(Icons.call_made), onPressed: () {}),
IconButton(icon: Icon(Icons.call_merge), onPressed: () {}),
IconButton(icon: Icon(Icons.call_received), onPressed: () {}),
IconButton(icon: Icon(Icons.call_missed), onPressed: () {}),
IconButton(icon: Icon(Icons.call_missed_outgoing), onPressed: () {}),
IconButton(icon: Icon(Icons.call_split), onPressed: () {}),
IconButton(icon: Icon(Icons.clear_all), onPressed: () {}),
],
),