ethio_numbers

Last updated:

0 purchases

ethio_numbers Image
ethio_numbers Images
Add to Cart

Description:

ethio numbers

ethio_numbers package used to convert Arabic number to Amharic, Afaan Oromo or Tigrigna text upto decillion (10^33) number.
Features #

Number to Amharic Text.
Number to Afaan Oromo Text.
Number to Tigrigna Text.
Monetize Number to Amharic Text.

Getting started #
you can add the package using the following command
flutter pub add ethio_numbers
copied to clipboard
or
dart pub add ethio_numbers
copied to clipboard
Usage #
Import the package in your Dart code:
import 'package:ethio_numbers/ethio_numbers.dart';
copied to clipboard
convert the number using .toAmharicText() or .toAfaanOromoText() extension.
print(7023.toAmharicText()); //Output: ሰባት ሺ ሀያ ሶስት

print(125.toAfaanOromoText()); //Output:dhibba digdamii shan

print(14000.toTigrigna()); // Output: ዓሰርተ ኣርባዕተ ሽሕ


copied to clipboard
for double values you can add fractionDigits and monetizeValue named parameter to get additional feature.
double money = 34.50;
money.toAmharicText(monetizeValue: true); //Output: ሰላሳ አራት ብር ከ ሃምሳ ሳንቲም

double n = 524.53523;
n.toAmharicText(); //Output: አምስት መቶ ሃያ አራት ነጥብ አምስት ሶስት አምስት ሁለት ሶስት
n.toAmharicText(fractionDigits: 2); //Output: አምስት መቶ ሃያ አራት ነጥብ አምስት አራት

copied to clipboard
Contributions #
Contributions to the ethio_numbers are welcomed, If you find any issues or have suggestions for improvements, please open an issue or submit a pull request on the GitHub repository.
Special Thanks 🙏 #
Yordanos Mekonen who helps me on Tigrigna Numbers

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.