bidi 2.0.10 copy "bidi: ^2.0.10" to clipboard
bidi: ^2.0.10 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(),
    );
  }
}
13
likes
130
pub points
90%
popularity

Publisher

verified publisherpwa.ir

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

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

More

Packages that depend on bidi