如何在flutter中将应用程序从后台带到前台

Pri*_*min 5 flutter

我有一个管理音频通话的应用程序。当调用 add 并且应用程序在后台运行时,我需要将应用程序置于前台状态。我尝试使用导航器。推但没有任何结果。

Abe*_*hun 4

您可以使用Bringtoforeground包。就其版本而言,它还处于早期阶段,但它确实有效。

iOS系统

但这仅适用于 Android,您必须记住,后台的 iOS 应用程序会被破坏。你可以阅读这篇文章并 在此处查看详细信息

安卓

所以这个实现只适用于Android。

该软件包的最大优点是您可以将其与 Firebase Cloud Messaging (FCM) 或任何其他相关的软件包一起使用。

这是他们的示例,Bringtoforeground.bringAppToForeground();这是您用来将应用程序带到前台的代码片段。

import 'dart:async';

import 'package:bringtoforeground/bringtoforeground.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';

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

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

class _MyAppState extends State<MyApp> {
  String _platformVersion = 'Unknown';

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

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    String platformVersion;
    // Platform messages may fail, so we use a try/catch PlatformException.
    try {
      Timer.periodic(Duration(seconds: 10), (t) {
        Bringtoforeground.bringAppToForeground(); //This is the only thing that matters
      });
    } on PlatformException {
      platformVersion = 'Failed to get platform version.';
    }

    // If the widget was removed from the tree while the asynchronous platform
    // message was in flight, we want to discard the reply rather than calling
    // setState to update our non-existent appearance.
    if (!mounted) return;

    setState(() {
      _platformVersion = platformVersion;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text('Running on: $_platformVersion\n'),
        ),
      ),
    );
  }
}
Run Code Online (Sandbox Code Playgroud)