Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bang88/flutter_opencc
OpenCC wrapper for flutter
https://github.com/bang88/flutter_opencc
Last synced: 8 days ago
JSON representation
OpenCC wrapper for flutter
- Host: GitHub
- URL: https://github.com/bang88/flutter_opencc
- Owner: BANG88
- License: apache-2.0
- Created: 2019-01-17T07:13:02.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-17T08:56:40.000Z (about 6 years ago)
- Last Synced: 2025-01-04T15:16:35.889Z (22 days ago)
- Language: C++
- Size: 1.64 MB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# flutter_opencc
[![pub package](https://img.shields.io/pub/v/flutter_opencc.svg)](https://pub.dartlang.org/packages/flutter_opencc)
> Conversion between Traditional and Simplified Chinese using [opencc](https://github.com/BYVoid/OpenCC)
简繁体相互转换
## Getting Started
```yaml
dependencies:
flutter_opencc: ^0.0.1
```### Usage
```dart
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);
```