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) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
appBar: AppBar( appBar: AppBar(
automaticallyImplyLeading: false,
title: Text(context.t('market.title')), title: Text(context.t('market.title')),
actions: [ actions: [
IconButton( IconButton(

View File

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