bidi 2.0.12 bidi: ^2.0.12 copied to clipboard
Implementation of the Unicode Bidirectional Algorithm (UBA). Converts logical strings to their equivalent visual representation.
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(),
);
}
}