sinhala_unicode_converter 1.0.3
sinhala_unicode_converter: ^1.0.3 copied to clipboard
Sinhala Language Convert to the English Unicode
Sinhala Unicode Converter #
A Flutter package for converting Sinhala text between different encodings, such as Singlish to Unicode.
Installation #
To use this package, add sinhala_unicode_converter as a dependency in your pubspec.yaml file.
dependencies:
sinhala_unicode_converter: ^1.0.2
Then run the command:
flutter pub get
Usage #
import 'package:sinhala_unicode_converter/sinhala_unicode_converter.dart';
void main() {
// Input text in Singlish
String inputText = "සිංහල";
// Convert the input text
String convertedText = SinhalaUnicode.singlishToUnicode(inputText);
// Print the converted text for debugging
print("Converted Text: $convertedText");
}
This package provides a simple API for converting Sinhala text between different encodings. The SinhalaUnicode class exposes methods like singlishToUnicode() for performing the conversions.
Features #
- Convert Singlish text to Unicode.
- Additional features can be added in future updates.
Issues and Feedback #
Please file any issues, bugs, or feature requests in the GitHub repository.