我有一个运行正常的Flutter应用程序。
我希望我的应用程序可以自动进入后台,并让前一个应用程序返回到前台,而无需关闭我的应用程序。
此刻,我的应用程序以这种方式自行关闭:
class _AlertPageState extends State<AlertPage>{
static const timeout = const Duration(seconds: 2);
void handleTimeout() {
SystemNavigator.pop(); // this close my app, not release the foreground for previous app
}
@override
void initState() {
new Timer(timeout, handleTimeout);
...
}
@override
Widget build(BuildContext context) {
...
}
}
任何建议都会受到欢迎!
PS:我不想回到以前的路线。