From 7967c0b9d54780aa0d2b9de7e1737704ad22fd3f Mon Sep 17 00:00:00 2001 From: xuhang-x <36baea72@gmail.com> Date: Thu, 25 Jul 2024 11:55:41 +0800 Subject: [PATCH] 1 --- lib/page/index/index_view.dart | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/lib/page/index/index_view.dart b/lib/page/index/index_view.dart index 9d85b6d..0e8724f 100644 --- a/lib/page/index/index_view.dart +++ b/lib/page/index/index_view.dart @@ -26,18 +26,12 @@ class IndexView extends StatelessWidget { child: Column( children: [ _buildHead(), - const SizedBox(height: 30), - Expanded( - child: Column( - children: [ - _buildDailyQuote(), - Expanded(child: Container()), - _buildTools(), - Expanded(child: Container()), - _buildTranslate(), - ], - ), - ), + Expanded(child: Container()), + _buildDailyQuote(), + Expanded(child: Container()), + _buildTools(), + Expanded(child: Container()), + _buildTranslate(), ], ), ),