fix(mining-app): reduce bottom padding on navigation pages

Reduce bottom SizedBox from 100 to 24 on all four main navigation
pages (contribution, trading, asset, profile) to eliminate excessive
whitespace when scrolling to bottom.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-01-14 19:17:59 -08:00
parent 7bc8547a96
commit 02cc79d67a
4 changed files with 4 additions and 4 deletions

View File

@ -68,7 +68,7 @@ class AssetPage extends ConsumerWidget {
const SizedBox(height: 24), const SizedBox(height: 24),
// //
_buildAccountList(asset, isLoading), _buildAccountList(asset, isLoading),
const SizedBox(height: 100), const SizedBox(height: 24),
], ],
), ),
), ),

View File

@ -87,7 +87,7 @@ class ContributionPage extends ConsumerWidget {
const SizedBox(height: 16), const SizedBox(height: 16),
// //
_buildExpirationCard(contribution, isLoading), _buildExpirationCard(contribution, isLoading),
const SizedBox(height: 100), const SizedBox(height: 24),
]), ]),
), ),
), ),

View File

@ -90,7 +90,7 @@ class ProfilePage extends ConsumerWidget {
), ),
), ),
const SizedBox(height: 100), const SizedBox(height: 24),
], ],
), ),
), ),

View File

@ -74,7 +74,7 @@ class _TradingPageState extends ConsumerState<TradingPage> {
_buildMarketDataCard(marketAsync), _buildMarketDataCard(marketAsync),
_buildTradingPanel(priceAsync), _buildTradingPanel(priceAsync),
_buildMyOrdersCard(ordersAsync), _buildMyOrdersCard(ordersAsync),
const SizedBox(height: 100), const SizedBox(height: 24),
], ],
), ),
), ),