|
|
|
@ -278,14 +278,14 @@ class VitalSignDetailsScreen extends StatelessWidget {
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Expanded(
|
|
|
|
Expanded(
|
|
|
|
|
|
|
|
child: SingleChildScrollView(
|
|
|
|
child: Container(
|
|
|
|
child: Container(
|
|
|
|
margin: EdgeInsets.symmetric(horizontal: 16.0, vertical: 4),
|
|
|
|
margin: EdgeInsets.symmetric(horizontal: 16.0, vertical: 16),
|
|
|
|
child: GridView.count(
|
|
|
|
child: GridView.count(
|
|
|
|
shrinkWrap: true,
|
|
|
|
shrinkWrap: true,
|
|
|
|
physics: NeverScrollableScrollPhysics(),
|
|
|
|
physics: NeverScrollableScrollPhysics(),
|
|
|
|
crossAxisSpacing: 6,
|
|
|
|
crossAxisSpacing: 6,
|
|
|
|
mainAxisSpacing: 6,
|
|
|
|
mainAxisSpacing: 6,
|
|
|
|
childAspectRatio: 1.0 / 1.0,
|
|
|
|
|
|
|
|
crossAxisCount: 3,
|
|
|
|
crossAxisCount: 3,
|
|
|
|
children: [
|
|
|
|
children: [
|
|
|
|
InkWell(
|
|
|
|
InkWell(
|
|
|
|
@ -443,10 +443,36 @@ class VitalSignDetailsScreen extends StatelessWidget {
|
|
|
|
unit: TranslationBase.of(context).sysDias,
|
|
|
|
unit: TranslationBase.of(context).sysDias,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
InkWell(
|
|
|
|
|
|
|
|
onTap: () => isNotOneAppointment
|
|
|
|
|
|
|
|
? Navigator.push(
|
|
|
|
|
|
|
|
context,
|
|
|
|
|
|
|
|
FadePage(
|
|
|
|
|
|
|
|
page: VitalSignItemDetailsScreen(
|
|
|
|
|
|
|
|
pageKey: vitalSignDetails.Oxygenation,
|
|
|
|
|
|
|
|
pageTitle: TranslationBase.of(context)
|
|
|
|
|
|
|
|
.oxygenation,
|
|
|
|
|
|
|
|
vitalList:
|
|
|
|
|
|
|
|
mode.patientVitalSignsHistory,
|
|
|
|
|
|
|
|
patient: patient,
|
|
|
|
|
|
|
|
patientType: patientType,
|
|
|
|
|
|
|
|
arrivalType: arrivalType,
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
: null,
|
|
|
|
|
|
|
|
child: VitalSignItem(
|
|
|
|
|
|
|
|
des: TranslationBase.of(context).oxygenation,
|
|
|
|
|
|
|
|
imagePath: "${assetBasePath}blood_pressure.png",
|
|
|
|
|
|
|
|
lastVal: mode.oxygenation,
|
|
|
|
|
|
|
|
unit: "%",
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
),
|
|
|
|
],
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
),
|
|
|
|
],
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|