如何在flutter中将应用程序移至backgraound模式

时间:2019-07-15 03:28:09

标签: flutter

我想在android中将应用程序移至后台模式 这是我在输入页面中的代码。

class EntryPageState extends State<EntryPage>{
  @override
  Widget build(BuildContext context){
    return WillPopScope(
      child: ...,
      onWillPop: () async {
        if (Navigator.canPop(context)){
          return true;
        } else {
          // some code to do
          // move app to background mode
          return false;
        }
      },
    );
  }
}

所以,在这里怎么做。

0 个答案:

没有答案