bg_launcher 0.0.1 copy "bg_launcher: ^0.0.1" to clipboard
bg_launcher: ^0.0.1 copied to clipboard

PlatformAndroid

A flutter plugin that brings an in-background android app to the foreground (Android only)

example/lib/main.dart

import 'package:bg_launcher_example/exemple_receive_intent.dart';
import 'package:flutter/material.dart';

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

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

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

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(home: ExempleReceive());
  }
}
9
likes
140
pub points
75%
popularity

Publisher

verified publisheriheb.tech

A flutter plugin that brings an in-background android app to the foreground (Android only)

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on bg_launcher