assistive_touch 0.2.0 copy "assistive_touch: ^0.2.0" to clipboard
assistive_touch: ^0.2.0 copied to clipboard

A widget just like iPhone Assistive Touch.

assistive_touch #

Pub License: MIT

Example Screenshot

Getting Started #

Install the package

flutter pub add assistive_touch

Import the package

import 'package:assistive_touch/assistive_touch.dart';

Create a basic counter page:

class MyHomePage extends StatefulWidget {
  MyHomePage({Key? key, required this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  int _counter = 0;

  void _incrementCounter() {
    setState(() {
      _counter++;
    });
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Text(
              'You have pushed the button this many times:',
            ),
            Text(
              '$_counter',
              style: Theme.of(context).textTheme.headline4,
            ),
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: _incrementCounter,
        tooltip: 'Increment',
        child: Icon(Icons.add),
      ),
    );
  }
}

Move the Floating Action Button to AssistiveTouch:

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    // Wrap with a [Stack] widget first
    return Stack(
      children: [
        Scaffold(
          // ...
        ),
        AssistiveTouch(
          // move floatingActionButton here
          child: FloatingActionButton(
            onPressed: _incrementCounter,
            tooltip: 'Increment',
            child: Icon(Icons.add),
          ),
        )
      ],
    );
  }
}

Now you have a draggable Floating Action Button!

8
likes
110
pub points
49%
popularity

Publisher

unverified uploader

A widget just like iPhone Assistive Touch.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on assistive_touch