|
|
|
@ -9,6 +9,7 @@ import 'package:doctor_app_flutter/core/model/patient/patiant_info_model.dart';
|
|
|
|
import 'package:doctor_app_flutter/screens/base/base_view.dart';
|
|
|
|
import 'package:doctor_app_flutter/screens/base/base_view.dart';
|
|
|
|
import 'package:doctor_app_flutter/utils/dr_app_toast_msg.dart';
|
|
|
|
import 'package:doctor_app_flutter/utils/dr_app_toast_msg.dart';
|
|
|
|
import 'package:doctor_app_flutter/utils/translations_delegate_base_utils.dart';
|
|
|
|
import 'package:doctor_app_flutter/utils/translations_delegate_base_utils.dart';
|
|
|
|
|
|
|
|
import 'package:doctor_app_flutter/utils/utils.dart';
|
|
|
|
import 'package:doctor_app_flutter/widgets/patients/patient_service_title.dart';
|
|
|
|
import 'package:doctor_app_flutter/widgets/patients/patient_service_title.dart';
|
|
|
|
import 'package:doctor_app_flutter/widgets/patients/profile/app_bar/patient-profile-app-bar.dart';
|
|
|
|
import 'package:doctor_app_flutter/widgets/patients/profile/app_bar/patient-profile-app-bar.dart';
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/app_scaffold_widget.dart';
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/app_scaffold_widget.dart';
|
|
|
|
@ -23,6 +24,7 @@ import 'package:hexcolor/hexcolor.dart';
|
|
|
|
import 'package:provider/provider.dart';
|
|
|
|
import 'package:provider/provider.dart';
|
|
|
|
|
|
|
|
|
|
|
|
import '../../../../routes.dart';
|
|
|
|
import '../../../../routes.dart';
|
|
|
|
|
|
|
|
import '../soap_update/shared_soap_widgets/bottom_sheet_dialog_button.dart';
|
|
|
|
|
|
|
|
|
|
|
|
class AdmissionRequestFirstScreen extends StatefulWidget {
|
|
|
|
class AdmissionRequestFirstScreen extends StatefulWidget {
|
|
|
|
@override
|
|
|
|
@override
|
|
|
|
@ -100,8 +102,7 @@ class _AdmissionRequestThirdScreenState
|
|
|
|
Padding(
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.all(5.0),
|
|
|
|
padding: const EdgeInsets.all(5.0),
|
|
|
|
child: AppText(
|
|
|
|
child: AppText(
|
|
|
|
TranslationBase.of(context)
|
|
|
|
Utils.convertToTitleCase(TranslationBase.of(context).specialityAndDoctorDetail),
|
|
|
|
.specialityAndDoctorDetail,
|
|
|
|
|
|
|
|
color: Color(0xFF2E303A),
|
|
|
|
color: Color(0xFF2E303A),
|
|
|
|
fontSize: SizeConfig.textMultiplier * 1.8,
|
|
|
|
fontSize: SizeConfig.textMultiplier * 1.8,
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
@ -360,6 +361,9 @@ class _AdmissionRequestThirdScreenState
|
|
|
|
validationError: surgicalHistoryError,
|
|
|
|
validationError: surgicalHistoryError,
|
|
|
|
inputType: TextInputType.multiline,
|
|
|
|
inputType: TextInputType.multiline,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
SizedBox(
|
|
|
|
|
|
|
|
height: 100,
|
|
|
|
|
|
|
|
),
|
|
|
|
],
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
@ -367,12 +371,12 @@ class _AdmissionRequestThirdScreenState
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Container(
|
|
|
|
],
|
|
|
|
margin: EdgeInsets.symmetric(horizontal: 16, vertical: 8),
|
|
|
|
),
|
|
|
|
child: AppButton(
|
|
|
|
),
|
|
|
|
title: TranslationBase.of(context).next,
|
|
|
|
bottomSheet: BottomSheetDialogButton(
|
|
|
|
color: HexColor("#D02127"),
|
|
|
|
label: "${TranslationBase.of(context).next}",
|
|
|
|
onPressed: () async {
|
|
|
|
onTap: () async {
|
|
|
|
await locator<AnalyticsService>().logEvent(
|
|
|
|
await locator<AnalyticsService>().logEvent(
|
|
|
|
eventCategory: "Admission Request First Screen",
|
|
|
|
eventCategory: "Admission Request First Screen",
|
|
|
|
eventAction: "Go To Admission Request Two",
|
|
|
|
eventAction: "Go To Admission Request Two",
|
|
|
|
@ -465,10 +469,6 @@ class _AdmissionRequestThirdScreenState
|
|
|
|
},
|
|
|
|
},
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|