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

outdated

Rabbit Converter Package for Flutter. Rabbit Converter is a library to convert between Burmese Text Encodings (i.e. Zawgyi and Myanmar Unicode).

flutter_rabbit #

Rabbit Converter package for Flutter. This is a wrapper for Rabbit Converter.

Features #

  • Converts from ZawGyi to Myanmar Unicode.
  • Converts from Myanmar Unicode to ZawGyi.

Usage #

You must add the library as a dependency to your project.

dependencies:
 rabbit_converter: ^0.0.1

You should then run flutter packages get

After that, import the package in your dart file.

import 'package:rabbit_converter/rabbit_converter.dart';

Simply call the function to convert the string.

  String text = 'ယေဓမ္မာ ဟေတုပ္ပဘဝါ တေသံ ဟေတုံ တထာဂတော အာဟ တေသဉ္စ ယောနိရောဓေါ ဧဝံ ဝါဒီ မဟာသမဏော။';
  String zawgyiText = Rabbit.uni2zg(text);
  String unicodeText = Rabbit.zg2uni(zawgyiText);

#

Example Project #

There is a detailed example project in the example folder. You can directly run and play on it. There are code snippets from example project below.

#

Contributions #

  • If you found a bug, open an issue.
  • If you have a feature request, open an issue.
  • If you want to contribute, submit a pull request.

Version compatibility #

See CHANGELOG for all breaking (and non-breaking) changes.


Packaged by frozencity.
Rabbit Converter written in Dart by frencojobs.
Rabbit Converter written originally by saturngod.
24
likes
0
pub points
81%
popularity

Publisher

unverified uploader

Rabbit Converter Package for Flutter. Rabbit Converter is a library to convert between Burmese Text Encodings (i.e. Zawgyi and Myanmar Unicode).

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on rabbit_converter