| @@ -105,17 +105,13 @@ class _PlotInformationScreenState extends State<PlotInformationScreen> { | |||
| _actionAppBar() { | |||
| 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 | |||