SizedBox(
child: SizedBox(
height: 52,
width: 52,
child: ElevatedButton(
onLongPress: () {
showDialog(
context: context,
builder: (context) => AlertDialog(
title: const Text('Confirm Delete'),
content: const Text('Delete?'),
actions: [
TextButton(
onPressed: () {
TaskDao().delete(widget.nome);
Navigator.pop(context, '');
setState(() {});
},
child: const Text('Yes'),
),
TextButton(
onPressed: () {
Navigator.pop(context);
setState(() {});
},
child: const Text('No'),
),
],
),
);
},