| @@ -144,17 +144,25 @@ class _PlotActionScreenState extends State<PlotActionScreen> { | |||
| ), | |||
| SliverList( | |||
| delegate: SliverChildListDelegate([ | |||
| Container( | |||
| height: 40, | |||
| color: COLOR_CONST.WHITE_50, | |||
| alignment: Alignment.center, | |||
| child: _showTitle(context) | |||
| ? Text("") | |||
| : Text( | |||
| plot_detail_title, | |||
| style: TextStyle( | |||
| fontSize: 20, fontWeight: FontWeight.normal), | |||
| )) | |||
| _showTitle(context) | |||
| ? Container( | |||
| height: 40, | |||
| ) | |||
| : Container( | |||
| height: 40, | |||
| alignment: Alignment.center, | |||
| decoration: BoxDecoration( | |||
| color: COLOR_CONST.WHITE_50, | |||
| border: Border( | |||
| top: BorderSide(width: 0.5, color: COLOR_CONST.DEFAULT), | |||
| bottom: | |||
| BorderSide(width: 0.5, color: COLOR_CONST.DEFAULT)), | |||
| ), | |||
| child: Text( | |||
| plot_detail_title, | |||
| style: | |||
| TextStyle(fontSize: 20, fontWeight: FontWeight.normal), | |||
| )) | |||
| ])) | |||
| ], | |||
| body: BlocProvider( | |||