lqg 11 months ago
parent
commit
42cae70631
1 changed files with 2 additions and 1 deletions
  1. 2 1
      lib/pages/second/second_view.dart

+ 2 - 1
lib/pages/second/second_view.dart

@@ -27,6 +27,7 @@ class SecondView extends GetView<SecondController> {
             },
             child: Row(
               children: [
+                SizedBox(height: 10),
                 Text(controller.goods.title ?? ''),
                 SizedBox(width: 10),
                 Icon(Icons.favorite,
@@ -34,7 +35,7 @@ class SecondView extends GetView<SecondController> {
                         ? Colors.red
                         : Colors.grey),
                 SizedBox(
-                  height: 10,
+                  height: 20,
                 )
               ],
             ),