String formatPrice(int price, String locale) { final NumberFormat formatter = NumberFormat('###,###', locale); return '\$${formatter.format(price)}'; }