no message

parent f97a4ff7
...@@ -92,7 +92,6 @@ class _FavoriteState extends State<Favorite> { ...@@ -92,7 +92,6 @@ class _FavoriteState extends State<Favorite> {
return Container( return Container(
// color: Colors.red, // color: Colors.red,
margin: EdgeInsets.only(bottom: 15), margin: EdgeInsets.only(bottom: 15),
height: SizeConfig.getHeight(150),
child: Container( child: Container(
child: Column( child: Column(
children: <Widget>[ children: <Widget>[
......
...@@ -625,7 +625,14 @@ class _ShopListDetailState extends State<ShopListDetail> { ...@@ -625,7 +625,14 @@ class _ShopListDetailState extends State<ShopListDetail> {
), ),
Positioned( Positioned(
right: SizeConfig.getPadding(15), right: SizeConfig.getPadding(15),
top: SizeConfig.getPadding(20), top: SizeConfig.getPadding(10),
child: FlatButton(
onPressed: (){
Navigator.push(
context,
MaterialPageRoute(builder: (context) => ReviewShopPage()),
);
},
child: Text( child: Text(
'ดูทั้งหมด', 'ดูทั้งหมด',
textAlign: TextAlign.right, textAlign: TextAlign.right,
...@@ -637,6 +644,7 @@ class _ShopListDetailState extends State<ShopListDetail> { ...@@ -637,6 +644,7 @@ class _ShopListDetailState extends State<ShopListDetail> {
fontWeight: FontWeight.w700), fontWeight: FontWeight.w700),
), ),
), ),
),
Positioned( Positioned(
top: SizeConfig.getPadding(53), top: SizeConfig.getPadding(53),
left: SizeConfig.getPadding(20), left: SizeConfig.getPadding(20),
......
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