flutter: Call SystemNavigator.pop only on Android
(cherry picked from commit b7098cd2b9
)
This commit is contained in:
parent
e1208ea13a
commit
0797f5986d
|
@ -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(
|
||||
|
|
Loading…
Reference in New Issue