This documentation is for Dart(Flutter) specific usage of Myanmar Tools. See https://github.com/google/myanmar-tools/ for more.
To detect Zawgyi, create a final instance of ZawgyiDetector, and call getZawgyiProbability
with your string.
final _detector = await ZawGyiDetector.create();
double score = _detector.getZawGyiProbability("မ္း");
// score is now 0.999772 (very likely Zawgyi)
To convert between Zawgyi and Unicode, use the classe ZawGyiConverter
as shown below.
final converter= ZawGyiConverter.create();
// Zawgyi to Unicode
String uniOutput = converter.zawGyiToUnicode('မ္း');
// uniOutput is now 'မ်း'
// Unicode to Zawgyi
String zawOutput = converter.zawGyiToUnicode('မ်း');
// zawOutput is now 'မ္း'
Bug reports and pull requests are welcome on GitHub at https://github.com/google/myanmar-tools . This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The package is available as open source under the terms of the Apache-2.0 License.