fix back button on Calcendar, directory, AI, about

This commit is contained in:
2025-09-15 11:20:44 +02:00
parent ac4ad04788
commit 1194f5df9c
11 changed files with 69 additions and 25 deletions

View File

@@ -221,10 +221,12 @@ class WalletArguments {
class MzansiAiArguments {
final AppUser signedInUser;
final String? startUpQuestion;
final bool personalSelected;
MzansiAiArguments(
this.signedInUser,
this.startUpQuestion,
this.personalSelected,
);
}
@@ -240,6 +242,16 @@ class MzansiDirectoryArguments {
});
}
class AboutArguments {
final bool personalSelected;
final int? packageIndex;
AboutArguments(
this.personalSelected,
this.packageIndex,
);
}
class TestArguments {
final AppUser user;
final Business? business;