flutter_opencc

Conversion between Traditional and Simplified Chinese using [opencc](https://github.com/BYVoid/OpenCC)


License
Apache-2.0

Documentation

flutter_opencc

pub package

Conversion between Traditional and Simplified Chinese using opencc

简繁体相互转换

Getting Started

dependencies:
  flutter_opencc: ^0.0.1

Usage

import 'package:flutter_opencc/flutter_opencc.dart';

String results;
// Platform messages may fail, so we use a try/catch PlatformException.
try {
    results = await FlutterOpencc.convert(
    """鼠标里面的硅二极管坏了,导致光标分辨率降低。
我们在老挝的服务器的硬盘需要使用互联网算法软件解决异步的问题。
为什么你在床里面睡着?""",
    );
} on PlatformException {
    results = 'Failed to convert.';
}

print(results);