Last updated:
0 purchases
number words reader
Number Words Reader #
A Flutter package for converting numbers to Arabic and English words.
To use this package, add number_words_reader as a dependency in your pubspec.yaml file.
Installation #
dependencies:
number_words_reader: ^1.0.0
copied to clipboard
Then, run flutter pub get to fetch the package.
import #
import 'package:number_words_reader/number_words_reader.dart';
copied to clipboard
Usage Arabic #
void main() {
NumberWordsReader.convertToArabic(4500);
// Output: "أربعة آلاف وخمسمائة"
}
copied to clipboard
🔸 Usage English
void main() {
NumberWordsReader.convertToEnglish(4500);
// Output: "Four thousand five hundred"
NumberWordsReader.convert(55);
//Output:'fifty-five'
NumberWordsReader.convert(100000);
//Output:'one hundred thousand'
NumberWordsReader.convert(13578921);
//Output:'thirteen million five hundred seventy-eight thousand nine hundred twenty-one'
NumberWordsReader.convert(123456789);
//Output:'one hundred twenty-three million four hundred fifty-six thousand seven hundred eighty-nine'
}
copied to clipboard
Contributing
Feel free to contribute to this package by opening issues or submitting pull requests on the GitHub repository.
License
This package is licensed under the MIT License - see the LICENSE file for details.
Feel free to contribute to this package by opening issues or submitting pull requests on the GitHub repository.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.