double_back_to_close 2.0.0 double_back_to_close: ^2.0.0 copied to clipboard
Flutter package for request double back pressed before close app/route/screen. Wrap any widget with it to use.
import 'package:flutter/material.dart';
import 'package:double_back_to_close/double_back_to_close.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
bool allowClose = false;
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: DoubleBack(
condition: allowClose,
onConditionFail: () {
setState(() {
allowClose = true;
});
},
// message: "Press back again to exit",
child: MyHomePage(title: "Example"),
// onFirstBackPress: (context) {
// // change this with your custom action
// final snackBar = SnackBar(content: Text('Press back again to exit'));
// ScaffoldMessenger.of(context).showSnackBar(snackBar);
// // ---
// },
waitForSecondBackPress: 3, // default 2
textStyle: TextStyle(
fontSize: 13,
color: Colors.white,
),
background: Colors.red,
backgroundRadius: 30,
),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key? key, this.title}) : super(key: key);
final String? title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
int _counter = 0;
void _incrementCounter() {
setState(() {
_counter++;
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title!),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text(
'You have pushed the button this many times:',
),
Text(
'$_counter',
style: Theme.of(context).textTheme.headline4,
),
],
),
),
floatingActionButton: FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Increment',
child: Icon(Icons.add),
),
);
}
}