Merge branch 'majd_development_new' into main_latest_merged

main_design2.0
Sikander Saleem 2 years ago
commit 55cbf99264

@ -336,7 +336,7 @@ class ServiceRequestsProvider extends ChangeNotifier {
},
)
?.toList(),
"reviewComment": report.reviewComment ?? "",
"reviewComment": "",
"comment": report.comment,
"attachmentsWorkOrder": request.devicePhotos?.map((e) => {"name": e})?.toList(),
"equipmentStatus": report.equipmentStatus?.toMap(),

@ -397,21 +397,21 @@ class _CreateServiceReportState extends State<CreateServiceReport> with TickerPr
),
],
),
if (_showCommentField)
const SizedBox(
height: 8,
),
if (_showCommentField)
ATextFormField(
initialValue: _serviceReport?.reviewComment,
hintText: "Review Comment",
textAlign: TextAlign.center,
style: Theme.of(context).textTheme.titleMedium,
textInputType: TextInputType.multiline,
onSaved: (value) {
_serviceReport.reviewComment = value;
},
),
// if (_showCommentField)
// const SizedBox(
// height: 8,
// ),
// if (_showCommentField)
// ATextFormField(
// initialValue: _serviceReport?.reviewComment,
// hintText: "Review Comment",
// textAlign: TextAlign.center,
// style: Theme.of(context).textTheme.titleMedium,
// textInputType: TextInputType.multiline,
// onSaved: (value) {
// _serviceReport.reviewComment = value;
// },
// ),
SizedBox(
height: 8 * AppStyle.getScaleFactor(context),
),

Loading…
Cancel
Save