move_to_background 1.0.2 copy "move_to_background: ^1.0.2" to clipboard
move_to_background: ^1.0.2 copied to clipboard

Flutter plugin for sending application to background. Send your app to the background with one line of code.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'package:move_to_background/move_to_background.dart';

void main() => runApp(MyApp());

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

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return WillPopScope(
      onWillPop: () async {
        MoveToBackground.moveTaskToBack();
        return false;
      },
      child: MaterialApp(
        home: Scaffold(
          floatingActionButton: FloatingActionButton(
            child: Icon(Icons.arrow_downward),
            onPressed: () {
              MoveToBackground.moveTaskToBack();
            },
          ),
          appBar: AppBar(
            title: const Text('MoveToBackground Example'),
          ),
          body: Center(
            child: Text('Press the floating action button'),
          ),
        ),
      ),
    );
  }
}
172
likes
150
points
16.1k
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter plugin for sending application to background. Send your app to the background with one line of code.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on move_to_background