Skip to content

Instantly share code, notes, and snippets.

@victorbrndls
Created May 13, 2021 11:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save victorbrndls/8c9fa4ae1bb089bf729b1704394a031f to your computer and use it in GitHub Desktop.
Save victorbrndls/8c9fa4ae1bb089bf729b1704394a031f to your computer and use it in GitHub Desktop.
fun Context.formatPrice(price: Double) : String {
val formatter = DecimalFormat(getString(R.string.price_formatter))
return formatter.format(price)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment