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

A Flutter plugin to send your app to background easily, mostly used when you want to keep your app running in background.

example/lib/main.dart

import 'dart:async';

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

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

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  int count = 0;

  @override
  void initState() {
    super.initState();
    _incrementCounter();
  }

  void _incrementCounter() async {
    WidgetsBinding.instance.addPostFrameCallback((_) async {
      Timer.periodic(const Duration(seconds: 1), (_) {
        setState(() {
          count++;
        });
      });
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          leading: Text(
            '$count',
            style: TextStyle(color: Colors.red, fontSize: 20),
          ),
          title: const Text('sendToBackground'),
        ),
        body: Center(
          child: ElevatedButton(
            child: const Icon(Icons.arrow_back),
            onPressed: () {
              SendToBackground.sendToBackground();
            },
          ),
        ),
      ),
    );
  }
}
8
likes
150
points
505
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter plugin to send your app to background easily, mostly used when you want to keep your app running in background.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on send_to_background

Packages that implement send_to_background