Browse Source

update style

master
daivph 5 years ago
parent
commit
c833dbf822
1 changed files with 19 additions and 11 deletions
  1. +19
    -11
      lib/presentation/screens/plot_detail/sc_plot_action.dart

+ 19
- 11
lib/presentation/screens/plot_detail/sc_plot_action.dart View File

), ),
SliverList( SliverList(
delegate: SliverChildListDelegate([ 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( body: BlocProvider(

Loading…
Cancel
Save