|
|
|
@ -12,6 +12,7 @@ import 'package:doctor_app_flutter/util/dr_app_toast_msg.dart';
|
|
|
|
import 'package:doctor_app_flutter/util/translations_delegate_base.dart';
|
|
|
|
import 'package:doctor_app_flutter/util/translations_delegate_base.dart';
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/TextFields.dart';
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/TextFields.dart';
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/app_buttons_widget.dart';
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/app_buttons_widget.dart';
|
|
|
|
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/app_scaffold_widget.dart';
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/app_texts_widget.dart';
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/app_texts_widget.dart';
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/dialogs/dailog-list-select.dart';
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/dialogs/dailog-list-select.dart';
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/network_base_view.dart';
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/network_base_view.dart';
|
|
|
|
@ -142,16 +143,19 @@ class _AddSelectedRadiologyOrderState extends State<AddSelectedRadiologyOrder> {
|
|
|
|
onModelReady: (model) => model.getProcedureCategory(
|
|
|
|
onModelReady: (model) => model.getProcedureCategory(
|
|
|
|
categoryName: "Radiology", categoryID: "03"),
|
|
|
|
categoryName: "Radiology", categoryID: "03"),
|
|
|
|
builder: (BuildContext context, ProcedureViewModel model, Widget child) =>
|
|
|
|
builder: (BuildContext context, ProcedureViewModel model, Widget child) =>
|
|
|
|
NetworkBaseView(
|
|
|
|
AppScaffold(
|
|
|
|
|
|
|
|
isShowAppBar: false,
|
|
|
|
|
|
|
|
body: NetworkBaseView(
|
|
|
|
baseViewModel: model,
|
|
|
|
baseViewModel: model,
|
|
|
|
child: DraggableScrollableSheet(
|
|
|
|
child: DraggableScrollableSheet(
|
|
|
|
minChildSize: 0.90,
|
|
|
|
minChildSize: 0.90,
|
|
|
|
initialChildSize: 0.95,
|
|
|
|
initialChildSize: 0.95,
|
|
|
|
maxChildSize: 1.0,
|
|
|
|
maxChildSize: 1.0,
|
|
|
|
builder: (BuildContext context, ScrollController scrollController) {
|
|
|
|
builder:
|
|
|
|
|
|
|
|
(BuildContext context, ScrollController scrollController) {
|
|
|
|
return SingleChildScrollView(
|
|
|
|
return SingleChildScrollView(
|
|
|
|
child: Container(
|
|
|
|
child: Container(
|
|
|
|
height: MediaQuery.of(context).size.height * 1.20,
|
|
|
|
height: MediaQuery.of(context).size.height * 1.0,
|
|
|
|
child: Padding(
|
|
|
|
child: Padding(
|
|
|
|
padding: EdgeInsets.all(12.0),
|
|
|
|
padding: EdgeInsets.all(12.0),
|
|
|
|
child: Column(
|
|
|
|
child: Column(
|
|
|
|
@ -289,6 +293,7 @@ class _AddSelectedRadiologyOrderState extends State<AddSelectedRadiologyOrder> {
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}),
|
|
|
|
}),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
),
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|