https://github.com/champ96k/int_to_words
This package allows you to easily convert numbers to words.
https://github.com/champ96k/int_to_words
dart dart-package flutter int-to-words numbers-to-words pub pub-package
Last synced: 2 days ago
JSON representation
This package allows you to easily convert numbers to words.
- Host: GitHub
- URL: https://github.com/champ96k/int_to_words
- Owner: champ96k
- License: mit
- Created: 2022-12-03T07:40:32.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-12-04T07:46:53.000Z (over 3 years ago)
- Last Synced: 2025-09-03T17:46:58.786Z (10 months ago)
- Topics: dart, dart-package, flutter, int-to-words, numbers-to-words, pub, pub-package
- Language: Dart
- Homepage: https://pub.dev/packages/int_to_words
- Size: 10.7 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Numbers to words
This package allows you to easily convert numbers to words.
## Usage
[Example](https://github.com/champ96k/int_to_words/tree/master/example)
To use this package :
- add the dependency to your pubspec.yaml file.
```yaml
dependencies:
flutter:
sdk: flutter
int_to_words: ^0.0.4
```
### How to use
```dart
final NumberToWords _number = NumberToWords();
final _num = _number.convert(022); -> Twenty Two
final _num1 = _number.convert(47474747); -> Forty Seven Million Four Hundred and Seventy Four Thousand Seven Hundred and Forty Seven
```
### Created & Maintained By
[Tushar Nikam](https://champ96k.github.io)