parent
30904ecc21
commit
703068082e
|
@ -285,6 +285,12 @@ class _MyHomePageState extends State<MyHomePage> {
|
||||||
content: const Text(
|
content: const Text(
|
||||||
"Are you sure you want to log out?"),
|
"Are you sure you want to log out?"),
|
||||||
actions: [
|
actions: [
|
||||||
|
TextButton(
|
||||||
|
onPressed: () {
|
||||||
|
Navigator.pop(context);
|
||||||
|
},
|
||||||
|
child: const Text("Nevermind"),
|
||||||
|
),
|
||||||
TextButton(
|
TextButton(
|
||||||
onPressed: () async {
|
onPressed: () async {
|
||||||
Navigator.pop(context);
|
Navigator.pop(context);
|
||||||
|
@ -297,12 +303,6 @@ class _MyHomePageState extends State<MyHomePage> {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
child: const Text("Do it!")),
|
child: const Text("Do it!")),
|
||||||
TextButton(
|
|
||||||
onPressed: () {
|
|
||||||
Navigator.pop(context);
|
|
||||||
},
|
|
||||||
child: const Text("Nevermind"),
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
@ -69,6 +69,16 @@ class _FilterMenuState extends State<FilterMenu> {
|
||||||
Row(
|
Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
||||||
children: [
|
children: [
|
||||||
|
TextButton(
|
||||||
|
onPressed: () {
|
||||||
|
setState(() {
|
||||||
|
_checked.forEach((key, value) {
|
||||||
|
_checked[key] = false;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
},
|
||||||
|
child: const Text("Reset")
|
||||||
|
),
|
||||||
TextButton(
|
TextButton(
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
List<int> items = _checked.keys
|
List<int> items = _checked.keys
|
||||||
|
@ -80,15 +90,6 @@ class _FilterMenuState extends State<FilterMenu> {
|
||||||
},
|
},
|
||||||
child: const Text("Done"),
|
child: const Text("Done"),
|
||||||
),
|
),
|
||||||
TextButton(
|
|
||||||
onPressed: () {
|
|
||||||
setState(() {
|
|
||||||
_checked.forEach((key, value) {
|
|
||||||
_checked[key] = false;
|
|
||||||
});
|
|
||||||
});
|
|
||||||
},
|
|
||||||
child: const Text("Reset")),
|
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in a new issue