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:
parent
7bc8547a96
commit
02cc79d67a
|
|
@ -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),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
||||||
|
|
@ -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),
|
||||||
]),
|
]),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
||||||
|
|
@ -90,7 +90,7 @@ class ProfilePage extends ConsumerWidget {
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
||||||
const SizedBox(height: 100),
|
const SizedBox(height: 24),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
||||||
|
|
@ -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),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue