Updated 27 April 2023
In this blog,we will learn How to implement double back to close app? A flutter package that allows Android users to press back -button twice to close the app.
This feature is very useful for any application.So,without wasting time,Let’s begin the code implementation.
Check our Flutter app development page.
Add the following package in your pubspec.yaml file.Using this package we will implement double back to close app.
Also run flutter pub get command.
1 2 |
dependencies: double_back_to_close: ^2.0.0 |
Import the library of the package that you have added in your pubspec.yaml file.
1 |
import 'package:double_back_to_close/double_back_to_close.dart'; |
Now,Inside Scaffold that wraps all your widgets,place the DoubleBack widget by passing a message.
1 2 3 |
home: const DoubleBack( message:"Press back again to close", child: MyHomePage(title: 'Flutter Demo Home Page')), |
And it’s done.We have implemented double back to close app. Let’s check the output.
Output is shown in the below attached video.
As you can see in the below attached video that when i am pressing back button, i am getting toast message.Then again i am pressing back button twice the application become close.
Congratulations!!!! you have learned How to implement double back to close app?.
For more interesting blogs check out here – https://mobikul.com/blog/
Hope this blog helped you with a better understanding of the implemention of double back to close app in Flutter.
Thanks for reading.😇
If you have more details or questions, you can reply to the received confirmation email.
Back to Home
Be the first to comment.