text_sight 0.0.1
text_sight: ^0.0.1 copied to clipboard
Live, on-device text recognition — Apple Vision on iOS, ML Kit on Android. The text-scanning sibling to mobile_scanner.
example/lib/main.dart
import 'package:flutter/widgets.dart';
import 'package:platform_adaptive_widgets/platform_adaptive_widgets.dart';
import 'features/core/views/home_view.dart';
void main() => runApp(const TextSightExampleApp());
/// Showcase app for `text_sight` — a landing hub onto each feature demo.
class TextSightExampleApp extends StatelessWidget {
const TextSightExampleApp({super.key});
@override
Widget build(BuildContext context) =>
const PlatformApp(title: 'text_sight example', home: HomeView());
}