|
|
|
|
@ -26,6 +26,7 @@ import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
|
|
|
|
|
import 'package:diplomaticquarterapp/widgets/transitions/fade_page.dart';
|
|
|
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
import 'package:flutter_svg/flutter_svg.dart';
|
|
|
|
|
import 'package:provider/provider.dart';
|
|
|
|
|
import 'package:diplomaticquarterapp/widgets/text/app_texts_widget.dart';
|
|
|
|
|
import '../../widgets/data_display/medical/LabResult/LineChartCurved.dart';
|
|
|
|
|
@ -219,15 +220,31 @@ class _HomePageState extends State<HomePage> {
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 8,
|
|
|
|
|
),
|
|
|
|
|
Texts(
|
|
|
|
|
projectViewModel
|
|
|
|
|
.user.firstName +
|
|
|
|
|
" " +
|
|
|
|
|
projectViewModel
|
|
|
|
|
.user.lastName,
|
|
|
|
|
color: Colors.grey[100],
|
|
|
|
|
bold: true,
|
|
|
|
|
fontSize: 15,
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
|
|
|
|
Texts(
|
|
|
|
|
projectViewModel.user
|
|
|
|
|
.firstName +
|
|
|
|
|
" " +
|
|
|
|
|
projectViewModel
|
|
|
|
|
.user.lastName,
|
|
|
|
|
color: Colors.grey[100],
|
|
|
|
|
bold: true,
|
|
|
|
|
fontSize: 15,
|
|
|
|
|
),
|
|
|
|
|
projectViewModel.user
|
|
|
|
|
.cRSVerificationStatus ==
|
|
|
|
|
2
|
|
|
|
|
? SvgPicture.asset(
|
|
|
|
|
'assets/images/svg/verification_check.svg')
|
|
|
|
|
: projectViewModel
|
|
|
|
|
.user
|
|
|
|
|
.cRSVerificationStatus ==
|
|
|
|
|
3
|
|
|
|
|
? SvgPicture.asset(
|
|
|
|
|
'assets/images/svg/pending.svg')
|
|
|
|
|
: SizedBox()
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
Texts(
|
|
|
|
|
'${projectViewModel.user.patientID}',
|
|
|
|
|
|