我想在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;
}
},
);
}
}
所以,在这里怎么做。