The problem is this line --> return PopScope(canPop: false,
This will not allow the android back button to navigate back. You need to either remove this or set it to true. Now if you want to use as false on say IOS and not on android you can simply check it with Platform.isAndroid ? true : false
which is in your import 'dart:io'
.