fix(mobile): remove back button on MarketPage and fix transfer row overflow

- MarketPage: add automaticallyImplyLeading: false (tab-level page)
- TransferPage: wrap maskedContact in Flexible to prevent RIGHT OVERFLOW

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-03-07 03:07:50 -08:00
parent 75ef11ec22
commit 9e07efc54c
2 changed files with 8 additions and 4 deletions

View File

@ -38,6 +38,7 @@ class _MarketPageState extends State<MarketPage>
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
automaticallyImplyLeading: false,
title: Text(context.t('market.title')),
actions: [
IconButton(

View File

@ -268,10 +268,13 @@ class _TransferPageState extends State<TransferPage> {
const SizedBox(height: 2),
Row(
children: [
Text(
recipient.maskedContact,
style: AppTypography.caption.copyWith(
color: AppColors.textTertiary,
Flexible(
child: Text(
recipient.maskedContact,
overflow: TextOverflow.ellipsis,
style: AppTypography.caption.copyWith(
color: AppColors.textTertiary,
),
),
),
const SizedBox(width: 8),