I am new to Flutter development. Can anyone share me how to disable the back press in flutter
?
In Android, we can use onbackpressed
method.
@Override
public void onBackPressed() {
// super.onBackPressed(); commented this line in order to disable back press
//Write your code here
Toast.makeText(getApplicationContext(), "Back press disabled!", Toast.LENGTH_SHORT).show();
}
In flutter
how it possible to do?