|
|
|
|
@ -1,4 +1,5 @@
|
|
|
|
|
import 'package:doctor_app_flutter/core/viewModel/project_view_model.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/icons_app/doctor_app_icons.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/widgets/patients/profile/large_avatar.dart';
|
|
|
|
|
import 'package:eva_icons_flutter/eva_icons_flutter.dart';
|
|
|
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
|
@ -89,7 +90,7 @@ class DoctorCardInsurance extends StatelessWidget {
|
|
|
|
|
child: Padding(
|
|
|
|
|
padding: const EdgeInsets.all(5.0),
|
|
|
|
|
child: Texts(
|
|
|
|
|
'$patientOut',
|
|
|
|
|
'$patientOut'.replaceAll(" ", ""),
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
fontSize: 13.0,
|
|
|
|
|
),
|
|
|
|
|
@ -102,7 +103,7 @@ class DoctorCardInsurance extends StatelessWidget {
|
|
|
|
|
Expanded(
|
|
|
|
|
child: Texts(
|
|
|
|
|
doctorName,
|
|
|
|
|
bold: true,
|
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
|
)),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
@ -153,11 +154,13 @@ class DoctorCardInsurance extends StatelessWidget {
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
Texts(
|
|
|
|
|
'Clinic: ',
|
|
|
|
|
color: Colors.grey[500],
|
|
|
|
|
//fontWeight: FontWeight.w600,
|
|
|
|
|
//color: Colors.grey[500],
|
|
|
|
|
),
|
|
|
|
|
Expanded(
|
|
|
|
|
child: Texts(
|
|
|
|
|
clinic,
|
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
@ -167,19 +170,24 @@ class DoctorCardInsurance extends StatelessWidget {
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
Texts(
|
|
|
|
|
'Approval No: ',
|
|
|
|
|
color: Colors.grey[500],
|
|
|
|
|
//color: Colors.grey[500],
|
|
|
|
|
),
|
|
|
|
|
Texts(
|
|
|
|
|
branch,
|
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
)
|
|
|
|
|
]),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
Icon(
|
|
|
|
|
EvaIcons.eye,
|
|
|
|
|
size: 38.0,
|
|
|
|
|
Padding(
|
|
|
|
|
padding:
|
|
|
|
|
const EdgeInsets.symmetric(horizontal: 15.0),
|
|
|
|
|
child: Icon(
|
|
|
|
|
DoctorApp.view,
|
|
|
|
|
size: 22.0,
|
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
|