Formats currency amount with proper formatting
String formatCurrency(num amount, String symbol) { final formatter = NumberFormat('#,###'); return '$symbol ${formatter.format(amount)}'; }