I want the same onBackPressed
logic of Android in flutter application and I want to close the app when I click on phone back button.
Can any one tell me how to do this when we click on phone back not app back button.
android:
@Override
public void onBackPressed()
{
// code here to show dialog
super.onBackPressed(); // optional depending on your needs
}