flutter
Why is onWillPop in WillPopScope ignored when using Navigator.pop?
This is by design . You will have to use Navigator.maybePop : Tries to pop the current route of the navigator that most…
This is by design . You will have to use Navigator.maybePop : Tries to pop the current route of the navigator that most…
use WillPopScope to achieve this. Example: import 'dart:async' ; import 'package:flutter/material.dart&…