Browse Source

add action button plot info screen

master
daivph 5 years ago
parent
commit
8dc38a9df0
1 changed files with 7 additions and 11 deletions
  1. +7
    -11
      lib/presentation/screens/plot_detail/sc_plot_information.dart

+ 7
- 11
lib/presentation/screens/plot_detail/sc_plot_information.dart View File



_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

Loading…
Cancel
Save