arabic_numbers 1.0.0 copy "arabic_numbers: ^1.0.0" to clipboard
arabic_numbers: ^1.0.0 copied to clipboard

Easily convert to Arabic numerals

arabic_numbers #

Easily convert to Arabic numerals

Getting Started #

Create an instance of Arabic Numbers Class #

ArabicNumbers arabicNumber = ArabicNumbers();
// Or call ArabicNumbers().convert(1);
copied to clipboard

Call the convert() method #

arabicNumber.convert(1);
// You can pass int/String value in the parameter.
// It will return a String value.
copied to clipboard

Example #

import 'package:fabexdateformatter/fabexdateformatter.dart';

main(){
    ArabicNumbers arabicNumber = ArabicNumbers();
    arabicNumber.convert(7);
    //Outputs: ٧
}

copied to clipboard
24
likes
150
points
429
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.29 - 2025.04.13

Easily convert to Arabic numerals

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on arabic_numbers