updated libs, fixed transaction form

This commit is contained in:
2024-04-20 21:06:25 +02:00
parent 35930d188c
commit 6a9da33283
8 changed files with 70 additions and 68 deletions

View File

@@ -75,7 +75,7 @@ class AccountBloc extends Bloc<AccountEvent, AccountState> {
}
_onAccountImportCSV(AccountImportCSV event, Emitter<AccountState> emit) async {
int colorIndex = 0;
// int colorIndex = 0;
FilePickerResult? result = await FilePicker.platform.pickFiles();
final csvPath = result?.files.first.path;
@@ -172,7 +172,7 @@ class AccountBloc extends Bloc<AccountEvent, AccountState> {
}
_onAccountEditLabel(AccountEditLabel event, Emitter<AccountState> emit) {
Account account = event.account;
// Account account = event.account;
// TODO check for existance, rename every transaction
}