Commit 6b35189b by Mobile : Art

update

parent 561025d1
......@@ -98,7 +98,7 @@ class _FavoriteState extends State<Favorite> {
.cover,
width: SizeConfig.getWidth(110),
height: SizeConfig.getHeight(150),
fit: BoxFit.fitWidth,
fit: BoxFit.cover,
),
Expanded(
child: Container(
......@@ -114,18 +114,20 @@ class _FavoriteState extends State<Favorite> {
// color: Colors.blue,
child: Row(
children: <Widget>[
Expanded(
child: Container(
child: Text(
presenter.favoriteModel.wishListItem[index].product.name,
Expanded(
child: Container(
child: Text(
presenter.favoriteModel.wishListItem[index]
.product.name,
style: TextStyle(
color: Colors.black,
fontSize: SizeConfig.getFontSize(15)),
maxLines: 2,
),
fontSize: SizeConfig.getFontSize(15),
fontFamily: "SF_Pro_Text",
fontWeight: FontWeight.w700),
maxLines: 2,
),
),
),
// Spacer(),
IconButton(
onPressed: () {
......@@ -145,8 +147,10 @@ class _FavoriteState extends State<Favorite> {
child: Text(
'นวดเเผนไทย',
style: TextStyle(
color: Colors.black,
),
color: Colors.black,
fontSize: SizeConfig.getFontSize(14),
fontFamily: "SF_Pro_Text",
fontWeight: FontWeight.w500),
),
),
SizedBox(
......@@ -239,19 +243,19 @@ class _FavoriteState extends State<Favorite> {
),
),
Positioned(
top: SizeConfig.getPadding(77),
top: SizeConfig.getPadding(70),
left: SizeConfig.getPadding(16),
child: Container(
child: GestureDetector(
onTap: () {
Navigator.pop(context);
},
child: Icon(
Icons.keyboard_arrow_left,
color: Colors.white,
size: SizeConfig.getFontSize(24),
),
),
onTap: () {
Navigator.pop(context);
},
child: Icon(
Icons.keyboard_arrow_left,
color: Colors.white,
size: SizeConfig.getFontSize(40),
),
),
),
),
],
......
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