This commit is contained in:
xuhang-x 2024-07-25 11:55:41 +08:00
parent 4bccb583d6
commit 7967c0b9d5

View File

@ -26,18 +26,12 @@ class IndexView extends StatelessWidget {
child: Column( child: Column(
children: [ children: [
_buildHead(), _buildHead(),
const SizedBox(height: 30), Expanded(child: Container()),
Expanded( _buildDailyQuote(),
child: Column( Expanded(child: Container()),
children: [ _buildTools(),
_buildDailyQuote(), Expanded(child: Container()),
Expanded(child: Container()), _buildTranslate(),
_buildTools(),
Expanded(child: Container()),
_buildTranslate(),
],
),
),
], ],
), ),
), ),