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,16 +625,24 @@ class _ShopListDetailState extends State<ShopListDetail> { ...@@ -625,16 +625,24 @@ class _ShopListDetailState extends State<ShopListDetail> {
), ),
Positioned( Positioned(
right: SizeConfig.getPadding(15), right: SizeConfig.getPadding(15),
top: SizeConfig.getPadding(20), top: SizeConfig.getPadding(10),
child: Text( child: FlatButton(
'ดูทั้งหมด', onPressed: (){
textAlign: TextAlign.right, Navigator.push(
style: TextStyle( context,
decoration: TextDecoration.underline, MaterialPageRoute(builder: (context) => ReviewShopPage()),
color: Colors.black54, );
fontSize: SizeConfig.getFontSize(12), },
fontFamily: "SF_Pro_Text", child: Text(
fontWeight: FontWeight.w700), 'ดูทั้งหมด',
textAlign: TextAlign.right,
style: TextStyle(
decoration: TextDecoration.underline,
color: Colors.black54,
fontSize: SizeConfig.getFontSize(12),
fontFamily: "SF_Pro_Text",
fontWeight: FontWeight.w700),
),
), ),
), ),
Positioned( 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