Make app dymanically resizable for phone & web

This commit is contained in:
2024-07-11 13:31:02 +02:00
parent 98db9ce0c5
commit c8f99a03b4
35 changed files with 306 additions and 208 deletions

View File

@@ -27,17 +27,24 @@ class _PatientViewState extends State<PatientView> {
const SizedBox(
height: 10.0,
),
Row(
Wrap(
spacing: 10.0,
runSpacing: 10.0,
direction: Axis.horizontal,
alignment: WrapAlignment.center,
children: [
PatientNotes(
patientIndex: widget.selectedPatient.idpatients,
SizedBox(
width: 725,
child: PatientNotes(
patientIndex: widget.selectedPatient.idpatients,
),
),
const SizedBox(
width: 10,
),
PatientFiles(
patientIndex: widget.selectedPatient.idpatients,
selectedPatient: widget.selectedPatient,
SizedBox(
width: 725,
child: PatientFiles(
patientIndex: widget.selectedPatient.idpatients,
selectedPatient: widget.selectedPatient,
),
)
],
)