| _actionAppBar() { | _actionAppBar() { | ||||
| IconButton iconButton; | IconButton iconButton; | ||||
| if (_plot.id != null) { | |||||
| iconButton = IconButton( | |||||
| icon: Icon( | |||||
| Icons.done, | |||||
| color: COLOR_CONST.DEFAULT, | |||||
| ), | |||||
| onPressed: () {}, | |||||
| ); | |||||
| return <Widget>[iconButton]; | |||||
| } | |||||
| return <Widget>[Container()]; | |||||
| iconButton = IconButton( | |||||
| icon: Icon( | |||||
| Icons.done, | |||||
| ), | |||||
| onPressed: () {}, | |||||
| ); | |||||
| return <Widget>[iconButton]; | |||||
| } | } | ||||
| @override | @override |