diff --git a/app/lib/screens/wallets/bridge.dart b/app/lib/screens/wallets/bridge.dart index 11f77c6a7..7de00d528 100644 --- a/app/lib/screens/wallets/bridge.dart +++ b/app/lib/screens/wallets/bridge.dart @@ -235,20 +235,22 @@ class _WalletBridgeScreenState extends ConsumerState { ), const SizedBox(height: 10), ListTile( - title: TextField( - style: Theme.of(context).textTheme.bodyMedium!.copyWith( - color: Theme.of(context).colorScheme.onSurface, - ), - keyboardType: - const TextInputType.numberWithOptions(decimal: true), - controller: amountController, - decoration: InputDecoration( - labelText: 'Amount (Balance: ${formatAmount(balance)})', - hintText: '100', - suffixText: 'TFT', - errorText: amountError)), - subtitle: Text('Max Fee: ${!isWithdraw ? 1.1 : 1.01} TFT'), - ), + title: TextField( + style: Theme.of(context).textTheme.bodyMedium!.copyWith( + color: Theme.of(context).colorScheme.onSurface, + ), + keyboardType: + const TextInputType.numberWithOptions(decimal: true), + controller: amountController, + decoration: InputDecoration( + labelText: 'Amount (Balance: ${formatAmount(balance)})', + hintText: '100', + suffixText: 'TFT', + errorText: amountError)), + subtitle: Padding( + padding: const EdgeInsets.symmetric(vertical: 8.0), + child: Text('Max Fee: ${!isWithdraw ? 1.1 : 1.01} TFT'), + )), const SizedBox(height: 10), if (isBiggerThanFee) Padding(