Last updated:
0 purchases
geez
Geez SDK #
The Geez SDK is a powerful software development kit that simplifies the conversion between numeric values and their corresponding Geez script representations. It provides developers with a seamless way to incorporate Geez numeral conversion into their applications, enabling localization and cultural relevance for Geez-speaking communities.
Features #
Convert numeric values to Geez script representations.
Convert Geez script representations to numeric values.
Installation #
To use the Geez SDK in your Flutter project, follow these steps:
Add the following dependency to your pubspec.yaml file:
dependencies:
geez: ^0.0.1
copied to clipboard
Run the following command to fetch the package:
flutter pub get
copied to clipboard
Import the Geez package in your Dart code:
import 'package:geez/geez.dart';
copied to clipboard
Usage #
Convert a Number to Geez #
String geezRepresentation = 134.toGeez();
print(geezRepresentation); // Outputs: ፻፴፬
copied to clipboard
Convert Geez to a Number #
num number = '፻፴፬'.toArabic();
print(number); // Outputs: 134
copied to clipboard
Contributions #
Contributions to the Geez SDK are welcomed and encouraged! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request on the GitHub repository.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.