File frontend added to app

This commit is contained in:
2024-06-25 13:47:40 +02:00
parent ad805fdca1
commit 0a83d08492
62 changed files with 497 additions and 64 deletions

View File

@@ -1,6 +1,7 @@
import 'package:flutter/material.dart';
import 'package:patient_manager/components/patientDetails.dart';
import 'package:patient_manager/components/myAppBar.dart';
import 'package:patient_manager/components/patientFiles.dart';
import 'package:patient_manager/components/patientNotes.dart';
import 'package:patient_manager/objects/patients.dart';
@@ -31,7 +32,7 @@ class _PatientViewState extends State<PatientView> {
PatientNotes(
patientIndex: widget.selectedPatient.idpatients,
),
PatientNotes(
PatientFiles(
patientIndex: widget.selectedPatient.idpatients,
)
],

View File

@@ -30,7 +30,7 @@ class _SignInState extends State<SignIn> {
}
} on AuthException catch (error) {
loginError(error.message);
emailController.clear();
//emailController.clear();
passwordController.clear();
}
}