number_formatter 0.0.2
number_formatter: ^0.0.2 copied to clipboard
A Flutter package to format numbers with K, M, B suffixes example 1000 = 1k, 3600 = 3.6k 100,000 = 100k.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add number_formatterWith Flutter:
$ flutter pub add number_formatterThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
number_formatter: ^0.0.2Alternatively, your editor might support dart pub get or flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:number_formatter/number_formatter.dart';