no message

parent f97a4ff7
......@@ -92,7 +92,6 @@ class _FavoriteState extends State<Favorite> {
return Container(
// color: Colors.red,
margin: EdgeInsets.only(bottom: 15),
height: SizeConfig.getHeight(150),
child: Container(
child: Column(
children: <Widget>[
......
......@@ -625,16 +625,24 @@ class _ShopListDetailState extends State<ShopListDetail> {
),
Positioned(
right: SizeConfig.getPadding(15),
top: SizeConfig.getPadding(20),
child: Text(
'ดูทั้งหมด',
textAlign: TextAlign.right,
style: TextStyle(
decoration: TextDecoration.underline,
color: Colors.black54,
fontSize: SizeConfig.getFontSize(12),
fontFamily: "SF_Pro_Text",
fontWeight: FontWeight.w700),
top: SizeConfig.getPadding(10),
child: FlatButton(
onPressed: (){
Navigator.push(
context,
MaterialPageRoute(builder: (context) => ReviewShopPage()),
);
},
child: Text(
'ดูทั้งหมด',
textAlign: TextAlign.right,
style: TextStyle(
decoration: TextDecoration.underline,
color: Colors.black54,
fontSize: SizeConfig.getFontSize(12),
fontFamily: "SF_Pro_Text",
fontWeight: FontWeight.w700),
),
),
),
Positioned(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment