unit_converter 1.3.0 copy "unit_converter: ^1.3.0" to clipboard
unit_converter: ^1.3.0 copied to clipboard

A library to easily convert between units of different system.

unit_converter #

Twitter

A library to easily convert between units of different system.

Show some ❤️ and star the repo to support the project #

GitHub starsGitHub forksGitHub watchers

Installation #

In the dependencies: section of your pubspec.yaml, add the following line:

unit_converter: <latest_version>

Usage #

If you want to convert area units, get an instance of area converter, and call the convert method:

import 'package:unit_converter/unit_converter.dart';

main() {
  var areaConverter = getConverter(Converter.area);
  areaConverter.convert(value: 2, from: AreaUnit.acre, to: AreaUnit.squareFoot);
}

Get the available units:

  var avilableUnits = areaConverter.units();

Each unit have a name(British spelling) and an americanName(American spelling) property. For units that have the same americanName as name, the americanName is null. So, it is always good to check for the availability of americanName before displaying it.

  for(var unit in avilableUnits) {
    if(unit.americanName != null) {
      print(unit.americanName);
    } else {
      print(unit.name);
    }
  }

Donations #

This project needs you! If you would like to support the creator of this project or the continuous development and maintenance of this project, feel free to donate. Your donation is highly appreciated. Thank you!

PayPal

  • Donate $5: Thank's for creating this project, here's a tea (or some juice) for you!
  • Donate $10: Wow, I am amazed. Let me take you to the movies!
  • Donate $15: I really appreciate your work, let's grab some lunch!
  • Donate $25: That's some awesome stuff you did right there, dinner is on me!
  • Donate $50: I really really want to support this project, great job!
  • Donate $100: You are the man! This project saved me hours (if not days) of struggle and hard work, simply awesome!
  • Donate $2799: Go buddy, buy Macbook Pro for yourself!

Of course, you can also choose what you want to donate, all donations are awesome!

Features and bugs #

Please file feature requests and bugs at the issue tracker.

How to Contribute #

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request
8
likes
30
pub points
46%
popularity

Publisher

unverified uploader

A library to easily convert between units of different system.

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

More

Packages that depend on unit_converter