|
|
|
|
@ -6,6 +6,7 @@ import 'package:flutter/material.dart';
|
|
|
|
|
import 'package:fluttertoast/fluttertoast.dart';
|
|
|
|
|
import 'package:provider/provider.dart';
|
|
|
|
|
import 'package:test_sa/controllers/providers/api/service_requests_provider.dart';
|
|
|
|
|
import 'package:test_sa/controllers/providers/api/status_drop_down/report/service_types_provider.dart';
|
|
|
|
|
import 'package:test_sa/models/lookup.dart';
|
|
|
|
|
import 'package:test_sa/models/service_report.dart';
|
|
|
|
|
import 'package:test_sa/models/service_request/search_work_order.dart';
|
|
|
|
|
@ -13,6 +14,8 @@ import 'package:test_sa/views/app_style/colors.dart';
|
|
|
|
|
import 'package:test_sa/views/pages/sub_workorder/spare_parts_details_bottom_sheet.dart';
|
|
|
|
|
import 'package:test_sa/views/pages/sub_workorder/work_order_details_bottom_sheet.dart';
|
|
|
|
|
import 'package:test_sa/views/pages/sub_workorder/workorder_details.dart';
|
|
|
|
|
import 'package:test_sa/views/widgets/loaders/app_loading.dart';
|
|
|
|
|
import 'package:test_sa/views/widgets/status/service_request/service_request_defect_types_mune.dart';
|
|
|
|
|
|
|
|
|
|
import '../../../controllers/api_routes/http_status_manger.dart';
|
|
|
|
|
import '../../../controllers/localization/localization.dart';
|
|
|
|
|
@ -23,7 +26,6 @@ import '../../widgets/buttons/app_back_button.dart';
|
|
|
|
|
import '../../widgets/buttons/app_button.dart';
|
|
|
|
|
import '../../widgets/date_and_time/date_picker.dart';
|
|
|
|
|
import '../../widgets/images/mini_one_image_picker.dart';
|
|
|
|
|
import '../../widgets/status/report/service_report_equipment_status.dart';
|
|
|
|
|
import '../../widgets/status/report/service_report_fault_description.dart';
|
|
|
|
|
import '../../widgets/status/report/service_report_reasons.dart';
|
|
|
|
|
import '../../widgets/titles/app_sub_title.dart';
|
|
|
|
|
@ -48,234 +50,249 @@ class _CreateSubWorkOrderPageState extends State<CreateSubWorkOrderPage> {
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
void initState() {
|
|
|
|
|
_subWorkOrders = SearchWorkOrder(assignedEmployee: widget.workOrder.assignedEmployee, callRequest: CallRequest());
|
|
|
|
|
_subWorkOrders = SearchWorkOrder(
|
|
|
|
|
assignedEmployee: widget?.workOrder?.callRequest?.assignedEmployee,
|
|
|
|
|
callRequest: CallRequest(id: widget?.workOrder?.callRequest?.id),
|
|
|
|
|
currentSituation: null,
|
|
|
|
|
supplier: null,
|
|
|
|
|
);
|
|
|
|
|
_serviceReport = ServiceReport(id: widget.workOrder.id, type: widget.workOrder.assetType, equipmentStatus: widget.workOrder.equipmentStatus);
|
|
|
|
|
if (context.mounted) {
|
|
|
|
|
Provider.of<ServiceRequestFaultDescriptionProvider>(context, listen: false).reset();
|
|
|
|
|
}
|
|
|
|
|
super.initState();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Future getAssetType() async {
|
|
|
|
|
Provider.of<ServiceRequestFaultDescriptionProvider>(context, listen: false).reset();
|
|
|
|
|
final assetTypesProvider = Provider.of<ServiceStatusProvider>(context, listen: false);
|
|
|
|
|
await assetTypesProvider.getTypes();
|
|
|
|
|
_subWorkOrders?.assetType = assetTypesProvider.statuses?.firstWhere(
|
|
|
|
|
(element) => element.value == widget.workOrder?.callRequest?.assetType,
|
|
|
|
|
orElse: () => null,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
final Subtitle subtitle = AppLocalization.of(context).subtitle;
|
|
|
|
|
return Scaffold(
|
|
|
|
|
body: SafeArea(
|
|
|
|
|
child: SingleChildScrollView(
|
|
|
|
|
child: Form(
|
|
|
|
|
key: _formKey,
|
|
|
|
|
child: Column(
|
|
|
|
|
children: [
|
|
|
|
|
Container(
|
|
|
|
|
color: AColors.primaryColor,
|
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 0, vertical: 4),
|
|
|
|
|
child: Column(
|
|
|
|
|
children: [
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
|
|
|
|
const ABackButton(),
|
|
|
|
|
Expanded(
|
|
|
|
|
child: Center(
|
|
|
|
|
child: Text(
|
|
|
|
|
"New Work Order",
|
|
|
|
|
style: Theme.of(context).textTheme.titleLarge.copyWith(color: AColors.white, fontStyle: FontStyle.italic),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(
|
|
|
|
|
width: 48,
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
Padding(
|
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 16),
|
|
|
|
|
child: Column(
|
|
|
|
|
children: [
|
|
|
|
|
WorkOrderDetails(
|
|
|
|
|
item: widget.workOrder,
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(height: 8),
|
|
|
|
|
Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
const ASubTitle("Equipment status"),
|
|
|
|
|
if (_validate && _subWorkOrders?.equipmentStatus == null)
|
|
|
|
|
ASubTitle(
|
|
|
|
|
subtitle.requiredWord,
|
|
|
|
|
color: Colors.red,
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(
|
|
|
|
|
height: 4,
|
|
|
|
|
),
|
|
|
|
|
ServiceReportEquipmentStatusMenu(
|
|
|
|
|
report: _serviceReport,
|
|
|
|
|
onSelect: (status) {
|
|
|
|
|
_subWorkOrders.equipmentStatus = status;
|
|
|
|
|
_serviceReport.equipmentStatus = status;
|
|
|
|
|
setState(() {});
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(height: 8),
|
|
|
|
|
Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
const ASubTitle("Return to Service"),
|
|
|
|
|
if (_validate && _subWorkOrders.visitDate == null)
|
|
|
|
|
ASubTitle(
|
|
|
|
|
subtitle.requiredWord,
|
|
|
|
|
color: Colors.red,
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(
|
|
|
|
|
height: 4,
|
|
|
|
|
),
|
|
|
|
|
Row(
|
|
|
|
|
child: FutureBuilder(
|
|
|
|
|
future: getAssetType(),
|
|
|
|
|
builder: (context, snap) => snap.connectionState == ConnectionState.waiting
|
|
|
|
|
? const ALoading()
|
|
|
|
|
: SingleChildScrollView(
|
|
|
|
|
child: Form(
|
|
|
|
|
key: _formKey,
|
|
|
|
|
child: Column(
|
|
|
|
|
children: [
|
|
|
|
|
Container(
|
|
|
|
|
color: AColors.primaryColor,
|
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 0, vertical: 4),
|
|
|
|
|
child: Column(
|
|
|
|
|
children: [
|
|
|
|
|
Expanded(
|
|
|
|
|
child: ADatePicker(
|
|
|
|
|
date: DateTime.tryParse(_subWorkOrders.visitDate ?? ""),
|
|
|
|
|
from: DateTime(1950),
|
|
|
|
|
onDatePicker: (date) {
|
|
|
|
|
_subWorkOrders.visitDate = date?.toIso8601String();
|
|
|
|
|
setState(() {});
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
|
|
|
|
const ABackButton(),
|
|
|
|
|
Expanded(
|
|
|
|
|
child: Center(
|
|
|
|
|
child: Text(
|
|
|
|
|
"New Work Order",
|
|
|
|
|
style: Theme.of(context).textTheme.titleLarge.copyWith(color: AColors.white, fontStyle: FontStyle.italic),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(
|
|
|
|
|
width: 48,
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(height: 8),
|
|
|
|
|
Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
ASubTitle("Failure ${subtitle.reasons}"),
|
|
|
|
|
if (_validate && _subWorkOrders.reason == null)
|
|
|
|
|
ASubTitle(
|
|
|
|
|
subtitle.requiredWord,
|
|
|
|
|
color: Colors.red,
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(
|
|
|
|
|
height: 4,
|
|
|
|
|
),
|
|
|
|
|
ServiceReportReasonsMenu(
|
|
|
|
|
initialValue: _serviceReportReason,
|
|
|
|
|
onSelect: (status) {
|
|
|
|
|
_serviceReportReason = status;
|
|
|
|
|
_subWorkOrders.reason = status;
|
|
|
|
|
setState(() {});
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(height: 8),
|
|
|
|
|
Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
ASubTitle(subtitle.faultDescription),
|
|
|
|
|
if (_validate && _subWorkOrders.faultDescription == null)
|
|
|
|
|
ASubTitle(
|
|
|
|
|
subtitle.requiredWord,
|
|
|
|
|
color: Colors.red,
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(
|
|
|
|
|
height: 4,
|
|
|
|
|
),
|
|
|
|
|
ServiceReportFaultDescription(
|
|
|
|
|
requestId: widget.workOrder?.callRequest?.id?.toString(),
|
|
|
|
|
initialValue: _subWorkOrders.faultDescription,
|
|
|
|
|
onSelect: (status) {
|
|
|
|
|
_subWorkOrders.faultDescription = status;
|
|
|
|
|
setState(() {});
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(height: 8),
|
|
|
|
|
Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
const ASubTitle("Solution"),
|
|
|
|
|
const SizedBox(
|
|
|
|
|
height: 4,
|
|
|
|
|
),
|
|
|
|
|
ATextFormField(labelText: _subWorkOrders.faultDescription?.workPerformed ?? "", textInputType: TextInputType.multiline, enable: false),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(height: 8),
|
|
|
|
|
InkWell(
|
|
|
|
|
onTap: () async {
|
|
|
|
|
await showModalBottomSheet(
|
|
|
|
|
context: context,
|
|
|
|
|
useSafeArea: true,
|
|
|
|
|
isScrollControlled: true,
|
|
|
|
|
backgroundColor: Colors.transparent,
|
|
|
|
|
builder: (context) => WorkOrderDetailsBottomSheet(subWorkOrder: _subWorkOrders),
|
|
|
|
|
);
|
|
|
|
|
log(_subWorkOrders?.toJson()?.toString());
|
|
|
|
|
},
|
|
|
|
|
child: Card(
|
|
|
|
|
child: ListTile(
|
|
|
|
|
title: Row(
|
|
|
|
|
children: [
|
|
|
|
|
Text(
|
|
|
|
|
"WO Details",
|
|
|
|
|
style: Theme.of(context).textTheme.bodyMedium,
|
|
|
|
|
),
|
|
|
|
|
const Text("*", style: TextStyle(color: Colors.red)),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
trailing: const Icon(Icons.arrow_forward_ios, size: 14, color: AColors.primaryColor),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(height: 8),
|
|
|
|
|
InkWell(
|
|
|
|
|
onTap: () async {
|
|
|
|
|
await showModalBottomSheet(
|
|
|
|
|
context: context,
|
|
|
|
|
useSafeArea: true,
|
|
|
|
|
isScrollControlled: true,
|
|
|
|
|
backgroundColor: Colors.transparent,
|
|
|
|
|
builder: (context) => SparePartsBottomSheet(subWorkOrder: _subWorkOrders),
|
|
|
|
|
);
|
|
|
|
|
log(_subWorkOrders?.toJson()?.toString());
|
|
|
|
|
},
|
|
|
|
|
child: Card(
|
|
|
|
|
child: ListTile(
|
|
|
|
|
title: Row(
|
|
|
|
|
children: [
|
|
|
|
|
Text(
|
|
|
|
|
"Spare Parts",
|
|
|
|
|
style: Theme.of(context).textTheme.bodyMedium,
|
|
|
|
|
Padding(
|
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 16),
|
|
|
|
|
child: Column(
|
|
|
|
|
children: [
|
|
|
|
|
WorkOrderDetails(
|
|
|
|
|
item: widget.workOrder,
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(height: 8),
|
|
|
|
|
Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
const ASubTitle("Equipment status"),
|
|
|
|
|
if (_validate && _subWorkOrders?.equipmentStatus == null)
|
|
|
|
|
ASubTitle(
|
|
|
|
|
subtitle.requiredWord,
|
|
|
|
|
color: Colors.red,
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(
|
|
|
|
|
height: 4,
|
|
|
|
|
),
|
|
|
|
|
ServiceRequestDefectTypesMenu(
|
|
|
|
|
initialValue: _serviceReport.equipmentStatus,
|
|
|
|
|
onSelect: (status) {
|
|
|
|
|
_subWorkOrders.equipmentStatus = status;
|
|
|
|
|
_serviceReport.equipmentStatus = status;
|
|
|
|
|
setState(() {});
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(height: 8),
|
|
|
|
|
Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
const ASubTitle("Return to Service"),
|
|
|
|
|
if (_validate && _subWorkOrders.visitDate == null)
|
|
|
|
|
ASubTitle(
|
|
|
|
|
subtitle.requiredWord,
|
|
|
|
|
color: Colors.red,
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(
|
|
|
|
|
height: 4,
|
|
|
|
|
),
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
|
|
|
|
Expanded(
|
|
|
|
|
child: ADatePicker(
|
|
|
|
|
date: DateTime.tryParse(_subWorkOrders.visitDate ?? ""),
|
|
|
|
|
from: DateTime(1950),
|
|
|
|
|
onDatePicker: (date) {
|
|
|
|
|
_subWorkOrders.visitDate = date?.toIso8601String();
|
|
|
|
|
setState(() {});
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(height: 8),
|
|
|
|
|
Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
ASubTitle("Failure ${subtitle.reasons}"),
|
|
|
|
|
if (_validate && _subWorkOrders.reason == null)
|
|
|
|
|
ASubTitle(
|
|
|
|
|
subtitle.requiredWord,
|
|
|
|
|
color: Colors.red,
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(
|
|
|
|
|
height: 4,
|
|
|
|
|
),
|
|
|
|
|
ServiceReportReasonsMenu(
|
|
|
|
|
initialValue: _serviceReportReason,
|
|
|
|
|
onSelect: (status) {
|
|
|
|
|
_serviceReportReason = status;
|
|
|
|
|
_subWorkOrders.reason = status;
|
|
|
|
|
setState(() {});
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(height: 8),
|
|
|
|
|
Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
ASubTitle(subtitle.faultDescription),
|
|
|
|
|
if (_validate && _subWorkOrders.faultDescription == null)
|
|
|
|
|
ASubTitle(
|
|
|
|
|
subtitle.requiredWord,
|
|
|
|
|
color: Colors.red,
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(
|
|
|
|
|
height: 4,
|
|
|
|
|
),
|
|
|
|
|
ServiceReportFaultDescription(
|
|
|
|
|
requestId: widget.workOrder?.callRequest?.id?.toString(),
|
|
|
|
|
initialValue: _subWorkOrders?.faultDescription,
|
|
|
|
|
onSelect: (status) {
|
|
|
|
|
_subWorkOrders.faultDescription = status;
|
|
|
|
|
setState(() {});
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(height: 8),
|
|
|
|
|
Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
const ASubTitle("Solution"),
|
|
|
|
|
const SizedBox(height: 4),
|
|
|
|
|
ATextFormField(labelText: _subWorkOrders?.faultDescription?.workPerformed ?? "", textInputType: TextInputType.multiline, enable: false),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(height: 8),
|
|
|
|
|
InkWell(
|
|
|
|
|
onTap: () async {
|
|
|
|
|
await showModalBottomSheet(
|
|
|
|
|
context: context,
|
|
|
|
|
useSafeArea: true,
|
|
|
|
|
isScrollControlled: true,
|
|
|
|
|
backgroundColor: Colors.transparent,
|
|
|
|
|
builder: (context) => WorkOrderDetailsBottomSheet(subWorkOrder: _subWorkOrders),
|
|
|
|
|
);
|
|
|
|
|
log(_subWorkOrders?.toJson()?.toString());
|
|
|
|
|
},
|
|
|
|
|
child: Card(
|
|
|
|
|
child: ListTile(
|
|
|
|
|
title: Row(
|
|
|
|
|
children: [
|
|
|
|
|
Text(
|
|
|
|
|
"WO Details",
|
|
|
|
|
style: Theme.of(context).textTheme.bodyMedium,
|
|
|
|
|
),
|
|
|
|
|
const Text("*", style: TextStyle(color: Colors.red)),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
trailing: const Icon(Icons.arrow_forward_ios, size: 14, color: AColors.primaryColor),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(height: 8),
|
|
|
|
|
InkWell(
|
|
|
|
|
onTap: () async {
|
|
|
|
|
await showModalBottomSheet(
|
|
|
|
|
context: context,
|
|
|
|
|
useSafeArea: true,
|
|
|
|
|
isScrollControlled: true,
|
|
|
|
|
backgroundColor: Colors.transparent,
|
|
|
|
|
builder: (context) => SparePartsBottomSheet(subWorkOrder: _subWorkOrders),
|
|
|
|
|
);
|
|
|
|
|
log(_subWorkOrders?.toJson()?.toString());
|
|
|
|
|
},
|
|
|
|
|
child: Card(
|
|
|
|
|
child: ListTile(
|
|
|
|
|
title: Row(
|
|
|
|
|
children: [
|
|
|
|
|
Text(
|
|
|
|
|
"Spare Parts",
|
|
|
|
|
style: Theme.of(context).textTheme.bodyMedium,
|
|
|
|
|
),
|
|
|
|
|
const Text("*", style: TextStyle(color: Colors.red)),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
trailing: const Icon(Icons.arrow_forward_ios, size: 14, color: AColors.primaryColor),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
const Text("*", style: TextStyle(color: Colors.red)),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
trailing: const Icon(Icons.arrow_forward_ios, size: 14, color: AColors.primaryColor),
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(height: 8),
|
|
|
|
|
AMiniOneImagePicker(
|
|
|
|
|
image: _image,
|
|
|
|
|
onPick: (image) {
|
|
|
|
|
_image = image;
|
|
|
|
|
_subWorkOrders.attachmentsWorkOrder ??= [];
|
|
|
|
|
_subWorkOrders.attachmentsWorkOrder.add(AttachmentsWorkOrder(name: "${image.path.split("/").last}|${base64Encode(image.readAsBytesSync())}"));
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(height: 50),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(height: 8),
|
|
|
|
|
AMiniOneImagePicker(
|
|
|
|
|
image: _image,
|
|
|
|
|
onPick: (image) {
|
|
|
|
|
_image = image;
|
|
|
|
|
_subWorkOrders.attachmentsWorkOrder ??= [];
|
|
|
|
|
_subWorkOrders.attachmentsWorkOrder.add(AttachmentsWorkOrder(name: "${image.path.split("/").last}|${base64Encode(image.readAsBytesSync())}"));
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(height: 50),
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
floatingActionButtonLocation: FloatingActionButtonLocation.centerDocked,
|
|
|
|
|
|