flutter: Call SystemNavigator.pop only on Android

(cherry picked from commit b7098cd2b9)
This commit is contained in:
Calcitem 2021-05-13 22:52:19 +08:00
parent e1208ea13a
commit 0797f5986d
1 changed files with 3 additions and 1 deletions

View File

@ -80,7 +80,9 @@ class _GameSettingsPageState extends State<GameSettingsPage> {
if (snapshot.data == 0) {
_restore();
SystemChannels.platform.invokeMethod('SystemNavigator.pop');
if (Platform.isAndroid) {
SystemChannels.platform.invokeMethod('SystemNavigator.pop');
} else {}
}
return Container(