bg_launcher 0.0.1 bg_launcher: ^0.0.1 copied to clipboard
A flutter plugin that brings an in-background android app to the foreground (Android only)
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());
}
}