https://github.com/matiullah-karimi/dart-number-to-words
A Dart package that converts number to words and supports multiple locales.
https://github.com/matiullah-karimi/dart-number-to-words
dart flutter number-to-words numbers-to-text numbers-to-words
Last synced: 18 days ago
JSON representation
A Dart package that converts number to words and supports multiple locales.
- Host: GitHub
- URL: https://github.com/matiullah-karimi/dart-number-to-words
- Owner: matiullah-karimi
- License: mit
- Created: 2019-05-28T05:15:52.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-15T10:34:01.000Z (about 4 years ago)
- Last Synced: 2025-03-30T19:34:17.513Z (about 2 months ago)
- Topics: dart, flutter, number-to-words, numbers-to-text, numbers-to-words
- Language: Dart
- Homepage:
- Size: 7.81 KB
- Stars: 6
- Watchers: 1
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# number_to_words
A Dart package that converts number to words and supports multiple locales.
## Getting Started
```sh
import 'package:numbers_to_words/numbers_to_words.dart';NumberToWords.convert(3, "da");
// سهNumberToWords.convert(3, "en");
// three
```