Swipe to go back gesture flutter
You could set your Theme.platform to TargetPlatform.ios. This will make use that the swipe back gesture is used on every device.
Use CupertinoPageRoute
to make it work on Android;
import 'package:flutter/cupertino.dart';
(as answered on How to implement swipe to previous page in Flutter?)