action_process_text 0.0.5 copy "action_process_text: ^0.0.5" to clipboard
action_process_text: ^0.0.5 copied to clipboard

outdated

A flutter plugin for ACTION_PROCESS_TEXT implementation in android.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'dart:async';
import 'package:action_process_text/action_process_text.dart';

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

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

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: MainPage(),
    );
  }
}

class MainPage extends StatefulWidget {
  @override
  _MainPageState createState() => _MainPageState();
}

class _MainPageState extends State<MainPage> {
  _MainPageState() {
    initActionProcessText();
  }

  Future<void> initActionProcessText() async {
    inputText = await ActionProcessText.getInputText;
    setState(() {});
  }

  String inputText = '';

  @override
  Widget build(BuildContext context) {
    return SafeArea(
      child: Scaffold(
        appBar: AppBar(
          centerTitle: true,
          title: const Text('ACTION_PROCESS_TEXT Example'),
        ),
        body: Center(
          child: Column(mainAxisAlignment: MainAxisAlignment.center, children: [
            Container(child: Text('Selected Text:\n')),
            Container(child: Text('$inputText')),
          ]),
        ),
      ),
    );
  }
}
29
likes
40
pub points
20%
popularity

Publisher

unverified uploader

A flutter plugin for ACTION_PROCESS_TEXT implementation in android.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on action_process_text