screen_text_extractor 0.1.2 copy "screen_text_extractor: ^0.1.2" to clipboard
screen_text_extractor: ^0.1.2 copied to clipboard

outdated

This plugin allows Flutter desktop apps to extract text from screen.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:bot_toast/bot_toast.dart';

import './pages/home.dart';

void main() {
  WidgetsFlutterBinding.ensureInitialized();

  runApp(MyApp());
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: ThemeData(
        primaryColor: Color(0xff416ff4),
        canvasColor: Colors.white,
        scaffoldBackgroundColor: Color(0xffF7F9FB),
        dividerColor: Colors.grey.withOpacity(0.3),
      ),
      builder: BotToastInit(),
      navigatorObservers: [BotToastNavigatorObserver()],
      home: HomePage(),
    );
  }
}
18
likes
140
points
75
downloads

Publisher

verified publisherleanflutter.dev

Weekly Downloads

This plugin allows Flutter desktop apps to extract text from screen.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

clipboard_watcher, flutter

More

Packages that depend on screen_text_extractor