|
|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
import 'package:doctor_app_flutter/core/model/procedure/get_ordered_procedure_model.dart';
|
|
|
|
|
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/util/date-utils.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/util/translations_delegate_base.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/Text.dart';
|
|
|
|
|
@ -147,7 +148,7 @@ class ProcedureCard extends StatelessWidget {
|
|
|
|
|
color: Colors.grey,
|
|
|
|
|
),
|
|
|
|
|
Texts(
|
|
|
|
|
entityList.clinicDescription.toString(),
|
|
|
|
|
entityList.clinicDescription??"",
|
|
|
|
|
bold: true,
|
|
|
|
|
fontSize: 12,
|
|
|
|
|
),
|
|
|
|
|
@ -163,7 +164,7 @@ class ProcedureCard extends StatelessWidget {
|
|
|
|
|
if (entityList.categoryID == 2 ||
|
|
|
|
|
entityList.categoryID == 4)
|
|
|
|
|
InkWell(
|
|
|
|
|
child: Icon(Icons.edit),
|
|
|
|
|
child: Icon(DoctorApp.edit),
|
|
|
|
|
onTap: onTap,
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
|