This commit is contained in:
JMARyA 2024-09-24 18:14:51 +02:00
parent b33e65706b
commit 637e74e45b
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263

View file

@ -302,6 +302,13 @@ class TransactionSelectPage extends StatelessWidget {
selectionList.add(s);
}
if (selectionList.isEmpty) {
Navigator.of(context).pop();
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text('No Transactions to select')),
);
}
return Scaffold(
appBar: AppBar(
title: const Text("Select a Transaction"),