Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

onbackpressed in flutter

WillPopScope(
  onWillPop: () async {
    // You can do some work here.
    // Returning true allows the pop to happen, returning false prevents it.
    return true;
  },
  child: ... // Your Scaffold goes here.
);
 
PREVIOUS NEXT
Tagged: #onbackpressed #flutter
ADD COMMENT
Topic
Name
7+3 =