pub package

Implementation of the Unicode Bidirectional Algorithm (UBA).

Reference: http://www.unicode.org/reports/tr9/.

Converts logical strings to their equivalent visual representation. Persian, Hebrew and Arabic languages (and any other RTL language) are supported.

Web Demo

Web Demo

Getting Started

In your pubspec.yaml file add:

dependencies:
  bidi: any

Then, in your code import and use the package:

import 'package:bidi/bidi.dart' as bidi;

final visual = bidi.logicalToVisual('نوشته پارسی اینجا گذارده شود.');
print(visual);

Libraries

bidi
Implementation of the Bidi algorithm, as described in http://www.unicode.org/reports/tr9/tr9-17.html.