Full Screen new page file viewer

This commit is contained in:
2024-08-21 12:41:29 +02:00
parent ea9cb89652
commit 197c5c292a
4 changed files with 347 additions and 177 deletions

View File

@@ -15,6 +15,16 @@ class BusinessArguments {
);
}
class FileViewArguments {
final String link;
final String path;
FileViewArguments(
this.link,
this.path,
);
}
class PatientViewArguments {
final AppUser signedInUser;
final Patient? selectedPatient;