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:
parent
75ef11ec22
commit
9e07efc54c
|
|
@ -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(
|
||||
|
|
|
|||
|
|
@ -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),
|
||||
|
|
|
|||
Loading…
Reference in New Issue