|
|
|
|
@ -32,7 +32,7 @@ class UpdateSoapIndexVidaPlus extends StatefulWidget {
|
|
|
|
|
class _UpdateSoapIndexVidaPlusState extends State<UpdateSoapIndexVidaPlus>
|
|
|
|
|
with TickerProviderStateMixin {
|
|
|
|
|
PageController? _controller;
|
|
|
|
|
int _currentIndex = 3;
|
|
|
|
|
int _currentIndex = 0;
|
|
|
|
|
List<MySelectedAllergy> myAllergiesList = [];
|
|
|
|
|
List<MySelectedHistory> myHistoryList = [];
|
|
|
|
|
|
|
|
|
|
@ -97,14 +97,11 @@ class _UpdateSoapIndexVidaPlusState extends State<UpdateSoapIndexVidaPlus>
|
|
|
|
|
},
|
|
|
|
|
scrollDirection: Axis.horizontal,
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
UpdatePlanPageVidaPlus(
|
|
|
|
|
changePageViewIndex: changePageViewIndex,
|
|
|
|
|
currentIndex: _currentIndex,
|
|
|
|
|
patientInfo: patient,
|
|
|
|
|
changeLoadingState: changeLoadingState,
|
|
|
|
|
sOAPViewModel: model,
|
|
|
|
|
changeStateFun: changeStateFun,
|
|
|
|
|
),
|
|
|
|
|
UpdateSubjectivePageVidaPlus(
|
|
|
|
|
changePageViewIndex: changePageViewIndex,
|
|
|
|
|
currentIndex: _currentIndex,
|
|
|
|
|
patientInfo: patient,
|
|
|
|
|
changeLoadingState: changeLoadingState),
|
|
|
|
|
UpdateAssessmentPage(
|
|
|
|
|
changePageViewIndex: changePageViewIndex,
|
|
|
|
|
currentIndex: _currentIndex,
|
|
|
|
|
@ -116,12 +113,15 @@ class _UpdateSoapIndexVidaPlusState extends State<UpdateSoapIndexVidaPlus>
|
|
|
|
|
currentIndex: _currentIndex,
|
|
|
|
|
patientInfo: patient,
|
|
|
|
|
changeLoadingState: changeLoadingState),
|
|
|
|
|
UpdatePlanPageVidaPlus(
|
|
|
|
|
changePageViewIndex: changePageViewIndex,
|
|
|
|
|
currentIndex: _currentIndex,
|
|
|
|
|
patientInfo: patient,
|
|
|
|
|
changeLoadingState: changeLoadingState,
|
|
|
|
|
sOAPViewModel: model,
|
|
|
|
|
changeStateFun: changeStateFun,
|
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
UpdateSubjectivePageVidaPlus(
|
|
|
|
|
changePageViewIndex: changePageViewIndex,
|
|
|
|
|
currentIndex: _currentIndex,
|
|
|
|
|
patientInfo: patient,
|
|
|
|
|
changeLoadingState: changeLoadingState),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
|