bidi 2.0.13 copy "bidi: ^2.0.13" to clipboard
bidi: ^2.0.13 copied to clipboard

Implementation of the Unicode Bidirectional Algorithm (UBA). Converts logical strings to their equivalent visual representation.

example/lib/main.dart

import 'package:example/home_page.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Bidi',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        brightness: Brightness.dark,
        useMaterial3: true,
        inputDecorationTheme: InputDecorationTheme(
          border: OutlineInputBorder(),
        ),
      ),
      home: HomePage(),
    );
  }
}
18
likes
160
points
523k
downloads

Publisher

verified publisherpwa.ir

Weekly Downloads

Implementation of the Unicode Bidirectional Algorithm (UBA). Converts logical strings to their equivalent visual representation.

Homepage
Repository (GitHub)

Documentation

API reference

License

MIT (license)

More

Packages that depend on bidi