| @@ -1 +1 @@ | |||
| 0d1f90510e22958a585802bb59f9c570 | |||
| eb141365fb69a4e0decadd2584d53516 | |||
| @@ -0,0 +1,24 @@ | |||
| class ActionEnd { | |||
| int id; | |||
| int activityId; | |||
| String executeDate; | |||
| String description; | |||
| ActionEnd({this.id, this.activityId, this.executeDate, this.description}); | |||
| ActionEnd.fromJson(Map<String, dynamic> json) { | |||
| id = json['id']; | |||
| activityId = json['activityId']; | |||
| executeDate = json['executeDate']; | |||
| description = json['description']; | |||
| } | |||
| Map<String, dynamic> toJson() { | |||
| final Map<String, dynamic> data = new Map<String, dynamic>(); | |||
| data['id'] = this.id; | |||
| data['activityId'] = this.activityId; | |||
| data['executeDate'] = this.executeDate; | |||
| data['description'] = this.description; | |||
| return data; | |||
| } | |||
| } | |||
| @@ -0,0 +1,62 @@ | |||
| class Disease { | |||
| int id; | |||
| int cropId; | |||
| String executeDate; | |||
| String description; | |||
| List<ObjectUpdateDetail> objectUpdateDetail; | |||
| Disease( | |||
| {this.id, | |||
| this.cropId, | |||
| this.executeDate, | |||
| this.description, | |||
| this.objectUpdateDetail}); | |||
| Disease.fromJson(Map<String, dynamic> json) { | |||
| id = json['id']; | |||
| cropId = json['cropId']; | |||
| executeDate = json['executeDate']; | |||
| description = json['description']; | |||
| if (json['objectUpdateDetail'] != null) { | |||
| objectUpdateDetail = new List<ObjectUpdateDetail>(); | |||
| json['objectUpdateDetail'].forEach((v) { | |||
| objectUpdateDetail.add(new ObjectUpdateDetail.fromJson(v)); | |||
| }); | |||
| } | |||
| } | |||
| Map<String, dynamic> toJson() { | |||
| final Map<String, dynamic> data = new Map<String, dynamic>(); | |||
| data['id'] = this.id; | |||
| data['cropId'] = this.cropId; | |||
| data['executeDate'] = this.executeDate; | |||
| data['description'] = this.description; | |||
| if (this.objectUpdateDetail != null) { | |||
| data['objectUpdateDetail'] = | |||
| this.objectUpdateDetail.map((v) => v.toJson()).toList(); | |||
| } | |||
| return data; | |||
| } | |||
| } | |||
| class ObjectUpdateDetail { | |||
| int id; | |||
| String name; | |||
| int index; | |||
| ObjectUpdateDetail({this.id, this.name, this.index}); | |||
| ObjectUpdateDetail.fromJson(Map<String, dynamic> json) { | |||
| id = json['id']; | |||
| name = json['name']; | |||
| index = json['index']; | |||
| } | |||
| Map<String, dynamic> toJson() { | |||
| final Map<String, dynamic> data = new Map<String, dynamic>(); | |||
| data['id'] = this.id; | |||
| data['name'] = this.name; | |||
| data['index'] = this.index; | |||
| return data; | |||
| } | |||
| } | |||
| @@ -0,0 +1,54 @@ | |||
| import 'SuppliesUsing.dart'; | |||
| class Dung { | |||
| int id; | |||
| int cropId; | |||
| String executeDate; | |||
| String description; | |||
| num quarantinePeriod; | |||
| String weatherConditions; | |||
| String purpose; | |||
| List<SuppliesUsing> suppliesUsing; | |||
| Dung( | |||
| {this.id, | |||
| this.cropId, | |||
| this.executeDate, | |||
| this.description, | |||
| this.quarantinePeriod, | |||
| this.weatherConditions, | |||
| this.purpose, | |||
| this.suppliesUsing}); | |||
| Dung.fromJson(Map<String, dynamic> json) { | |||
| id = json['id']; | |||
| cropId = json['cropId']; | |||
| executeDate = json['executeDate']; | |||
| description = json['description']; | |||
| quarantinePeriod = json['quarantinePeriod']; | |||
| weatherConditions = json['weatherConditions']; | |||
| purpose = json['purpose']; | |||
| if (json['suppliesUsing'] != null) { | |||
| suppliesUsing = new List<SuppliesUsing>(); | |||
| json['suppliesUsing'].forEach((v) { | |||
| suppliesUsing.add(new SuppliesUsing.fromJson(v)); | |||
| }); | |||
| } | |||
| } | |||
| Map<String, dynamic> toJson() { | |||
| final Map<String, dynamic> data = new Map<String, dynamic>(); | |||
| data['id'] = this.id; | |||
| data['cropId'] = this.cropId; | |||
| data['executeDate'] = this.executeDate; | |||
| data['description'] = this.description; | |||
| data['quarantinePeriod'] = this.quarantinePeriod; | |||
| data['weatherConditions'] = this.weatherConditions; | |||
| data['purpose'] = this.purpose; | |||
| if (this.suppliesUsing != null) { | |||
| data['suppliesUsing'] = | |||
| this.suppliesUsing.map((v) => v.toJson()).toList(); | |||
| } | |||
| return data; | |||
| } | |||
| } | |||
| @@ -0,0 +1,61 @@ | |||
| class Environment { | |||
| int id; | |||
| int cropId; | |||
| String executeDate; | |||
| String description; | |||
| List<EnvDetail> envDetail; | |||
| Environment( | |||
| {this.id, | |||
| this.cropId, | |||
| this.executeDate, | |||
| this.description, | |||
| this.envDetail}); | |||
| Environment.fromJson(Map<String, dynamic> json) { | |||
| id = json['id']; | |||
| cropId = json['cropId']; | |||
| executeDate = json['executeDate']; | |||
| description = json['description']; | |||
| if (json['envDetail'] != null) { | |||
| envDetail = new List<EnvDetail>(); | |||
| json['envDetail'].forEach((v) { | |||
| envDetail.add(new EnvDetail.fromJson(v)); | |||
| }); | |||
| } | |||
| } | |||
| Map<String, dynamic> toJson() { | |||
| final Map<String, dynamic> data = new Map<String, dynamic>(); | |||
| data['id'] = this.id; | |||
| data['cropId'] = this.cropId; | |||
| data['executeDate'] = this.executeDate; | |||
| data['description'] = this.description; | |||
| if (this.envDetail != null) { | |||
| data['envDetail'] = this.envDetail.map((v) => v.toJson()).toList(); | |||
| } | |||
| return data; | |||
| } | |||
| } | |||
| class EnvDetail { | |||
| int id; | |||
| String name; | |||
| int index; | |||
| EnvDetail({this.id, this.name, this.index}); | |||
| EnvDetail.fromJson(Map<String, dynamic> json) { | |||
| id = json['id']; | |||
| name = json['name']; | |||
| index = json['index']; | |||
| } | |||
| Map<String, dynamic> toJson() { | |||
| final Map<String, dynamic> data = new Map<String, dynamic>(); | |||
| data['id'] = this.id; | |||
| data['name'] = this.name; | |||
| data['index'] = this.index; | |||
| return data; | |||
| } | |||
| } | |||
| @@ -0,0 +1,44 @@ | |||
| class Harvest { | |||
| int id; | |||
| int activityId; | |||
| String executeDate; | |||
| String description; | |||
| num collectedQuantityLv1; | |||
| num collectedQuantityLv2; | |||
| num collectedQuantityLv3; | |||
| num removedQuantity; | |||
| Harvest( | |||
| {this.id, | |||
| this.activityId, | |||
| this.executeDate, | |||
| this.description, | |||
| this.collectedQuantityLv1, | |||
| this.collectedQuantityLv2, | |||
| this.collectedQuantityLv3, | |||
| this.removedQuantity}); | |||
| Harvest.fromJson(Map<String, dynamic> json) { | |||
| id = json['id']; | |||
| activityId = json['activityId']; | |||
| executeDate = json['executeDate']; | |||
| description = json['description']; | |||
| collectedQuantityLv1 = json['collectedQuantityLv1']; | |||
| collectedQuantityLv2 = json['collectedQuantityLv2']; | |||
| collectedQuantityLv3 = json['collectedQuantityLv3']; | |||
| removedQuantity = json['removedQuantity']; | |||
| } | |||
| Map<String, dynamic> toJson() { | |||
| final Map<String, dynamic> data = new Map<String, dynamic>(); | |||
| data['id'] = this.id; | |||
| data['activityId'] = this.activityId; | |||
| data['executeDate'] = this.executeDate; | |||
| data['description'] = this.description; | |||
| data['collectedQuantityLv1'] = this.collectedQuantityLv1; | |||
| data['collectedQuantityLv2'] = this.collectedQuantityLv2; | |||
| data['collectedQuantityLv3'] = this.collectedQuantityLv3; | |||
| data['removedQuantity'] = this.removedQuantity; | |||
| return data; | |||
| } | |||
| } | |||
| @@ -0,0 +1,62 @@ | |||
| import 'SuppliesUsing.dart'; | |||
| class HarvestProcess { | |||
| int id; | |||
| int activityId; | |||
| int harvestId; | |||
| String executeDate; | |||
| String description; | |||
| int quantityLv1; | |||
| int quantityLv2; | |||
| int quantityLv3; | |||
| int removedQuantity; | |||
| List<SuppliesUsing> suppliesUsing; | |||
| HarvestProcess( | |||
| {this.id, | |||
| this.activityId, | |||
| this.harvestId, | |||
| this.executeDate, | |||
| this.description, | |||
| this.quantityLv1, | |||
| this.quantityLv2, | |||
| this.quantityLv3, | |||
| this.removedQuantity, | |||
| this.suppliesUsing}); | |||
| HarvestProcess.fromJson(Map<String, dynamic> json) { | |||
| id = json['id']; | |||
| activityId = json['activityId']; | |||
| harvestId = json['harvestId']; | |||
| executeDate = json['executeDate']; | |||
| description = json['description']; | |||
| quantityLv1 = json['quantityLv1']; | |||
| quantityLv2 = json['quantityLv2']; | |||
| quantityLv3 = json['quantityLv3']; | |||
| removedQuantity = json['removedQuantity']; | |||
| if (json['suppliesUsing'] != null) { | |||
| suppliesUsing = new List<SuppliesUsing>(); | |||
| json['suppliesUsing'].forEach((v) { | |||
| suppliesUsing.add(new SuppliesUsing.fromJson(v)); | |||
| }); | |||
| } | |||
| } | |||
| Map<String, dynamic> toJson() { | |||
| final Map<String, dynamic> data = new Map<String, dynamic>(); | |||
| data['id'] = this.id; | |||
| data['activityId'] = this.activityId; | |||
| data['harvestId'] = this.harvestId; | |||
| data['executeDate'] = this.executeDate; | |||
| data['description'] = this.description; | |||
| data['quantityLv1'] = this.quantityLv1; | |||
| data['quantityLv2'] = this.quantityLv2; | |||
| data['quantityLv3'] = this.quantityLv3; | |||
| data['removedQuantity'] = this.removedQuantity; | |||
| if (this.suppliesUsing != null) { | |||
| data['suppliesUsing'] = | |||
| this.suppliesUsing.map((v) => v.toJson()).toList(); | |||
| } | |||
| return data; | |||
| } | |||
| } | |||
| @@ -0,0 +1,48 @@ | |||
| class Packing { | |||
| int id; | |||
| int activityId; | |||
| int harvestId; | |||
| String executeDate; | |||
| String description; | |||
| num quantityLv1; | |||
| num quantityLv2; | |||
| num quantityLv3; | |||
| num removedQuantity; | |||
| Packing( | |||
| {this.id, | |||
| this.activityId, | |||
| this.harvestId, | |||
| this.executeDate, | |||
| this.description, | |||
| this.quantityLv1, | |||
| this.quantityLv2, | |||
| this.quantityLv3, | |||
| this.removedQuantity}); | |||
| Packing.fromJson(Map<String, dynamic> json) { | |||
| id = json['id']; | |||
| activityId = json['activityId']; | |||
| harvestId = json['harvestId']; | |||
| executeDate = json['executeDate']; | |||
| description = json['description']; | |||
| quantityLv1 = json['quantityLv1']; | |||
| quantityLv2 = json['quantityLv2']; | |||
| quantityLv3 = json['quantityLv3']; | |||
| removedQuantity = json['removedQuantity']; | |||
| } | |||
| Map<String, dynamic> toJson() { | |||
| final Map<String, dynamic> data = new Map<String, dynamic>(); | |||
| data['id'] = this.id; | |||
| data['activityId'] = this.activityId; | |||
| data['harvestId'] = this.harvestId; | |||
| data['executeDate'] = this.executeDate; | |||
| data['description'] = this.description; | |||
| data['quantityLv1'] = this.quantityLv1; | |||
| data['quantityLv2'] = this.quantityLv2; | |||
| data['quantityLv3'] = this.quantityLv3; | |||
| data['removedQuantity'] = this.removedQuantity; | |||
| return data; | |||
| } | |||
| } | |||
| @@ -1,3 +1,5 @@ | |||
| import 'SuppliesUsing.dart'; | |||
| class Plant { | |||
| int cropId; | |||
| String executeDate; | |||
| @@ -42,25 +44,3 @@ class Plant { | |||
| return data; | |||
| } | |||
| } | |||
| class SuppliesUsing { | |||
| String dosage; | |||
| int quantity; | |||
| int suppliesInWarehouseId; | |||
| SuppliesUsing({this.dosage, this.quantity, this.suppliesInWarehouseId}); | |||
| SuppliesUsing.fromJson(Map<String, dynamic> json) { | |||
| dosage = json['dosage']; | |||
| quantity = json['quantity']; | |||
| suppliesInWarehouseId = json['suppliesInWarehouseId']; | |||
| } | |||
| Map<String, dynamic> toJson() { | |||
| final Map<String, dynamic> data = new Map<String, dynamic>(); | |||
| data['dosage'] = this.dosage; | |||
| data['quantity'] = this.quantity; | |||
| data['suppliesInWarehouseId'] = this.suppliesInWarehouseId; | |||
| return data; | |||
| } | |||
| } | |||
| @@ -0,0 +1,52 @@ | |||
| class Sell { | |||
| int id; | |||
| int activityId; | |||
| int harvestId; | |||
| String executeDate; | |||
| String description; | |||
| num quantityLv1; | |||
| num quantityLv2; | |||
| num quantityLv3; | |||
| num removedQuantity; | |||
| String buyer; | |||
| Sell( | |||
| {this.id, | |||
| this.activityId, | |||
| this.harvestId, | |||
| this.executeDate, | |||
| this.description, | |||
| this.quantityLv1, | |||
| this.quantityLv2, | |||
| this.quantityLv3, | |||
| this.removedQuantity, | |||
| this.buyer}); | |||
| Sell.fromJson(Map<String, dynamic> json) { | |||
| id = json['id']; | |||
| activityId = json['activityId']; | |||
| harvestId = json['harvestId']; | |||
| executeDate = json['executeDate']; | |||
| description = json['description']; | |||
| quantityLv1 = json['quantityLv1']; | |||
| quantityLv2 = json['quantityLv2']; | |||
| quantityLv3 = json['quantityLv3']; | |||
| removedQuantity = json['removedQuantity']; | |||
| buyer = json['buyer']; | |||
| } | |||
| Map<String, dynamic> toJson() { | |||
| final Map<String, dynamic> data = new Map<String, dynamic>(); | |||
| data['id'] = this.id; | |||
| data['activityId'] = this.activityId; | |||
| data['harvestId'] = this.harvestId; | |||
| data['executeDate'] = this.executeDate; | |||
| data['description'] = this.description; | |||
| data['quantityLv1'] = this.quantityLv1; | |||
| data['quantityLv2'] = this.quantityLv2; | |||
| data['quantityLv3'] = this.quantityLv3; | |||
| data['removedQuantity'] = this.removedQuantity; | |||
| data['buyer'] = this.buyer; | |||
| return data; | |||
| } | |||
| } | |||
| @@ -0,0 +1,58 @@ | |||
| import 'SuppliesUsing.dart'; | |||
| class Spraying { | |||
| int id; | |||
| int cropId; | |||
| String executeDate; | |||
| String description; | |||
| int quarantinePeriod; | |||
| String weatherConditions; | |||
| String resultAt; | |||
| String purpose; | |||
| List<SuppliesUsing> suppliesUsing; | |||
| Spraying( | |||
| {this.id, | |||
| this.cropId, | |||
| this.executeDate, | |||
| this.description, | |||
| this.quarantinePeriod, | |||
| this.weatherConditions, | |||
| this.resultAt, | |||
| this.purpose, | |||
| this.suppliesUsing}); | |||
| Spraying.fromJson(Map<String, dynamic> json) { | |||
| id = json['id']; | |||
| cropId = json['cropId']; | |||
| executeDate = json['executeDate']; | |||
| description = json['description']; | |||
| quarantinePeriod = json['quarantinePeriod']; | |||
| weatherConditions = json['weatherConditions']; | |||
| resultAt = json['resultAt']; | |||
| purpose = json['purpose']; | |||
| if (json['suppliesUsing'] != null) { | |||
| suppliesUsing = new List<SuppliesUsing>(); | |||
| json['suppliesUsing'].forEach((v) { | |||
| suppliesUsing.add(new SuppliesUsing.fromJson(v)); | |||
| }); | |||
| } | |||
| } | |||
| Map<String, dynamic> toJson() { | |||
| final Map<String, dynamic> data = new Map<String, dynamic>(); | |||
| data['id'] = this.id; | |||
| data['cropId'] = this.cropId; | |||
| data['executeDate'] = this.executeDate; | |||
| data['description'] = this.description; | |||
| data['quarantinePeriod'] = this.quarantinePeriod; | |||
| data['weatherConditions'] = this.weatherConditions; | |||
| data['resultAt'] = this.resultAt; | |||
| data['purpose'] = this.purpose; | |||
| if (this.suppliesUsing != null) { | |||
| data['suppliesUsing'] = | |||
| this.suppliesUsing.map((v) => v.toJson()).toList(); | |||
| } | |||
| return data; | |||
| } | |||
| } | |||
| @@ -0,0 +1,36 @@ | |||
| class SuppliesUsing { | |||
| int id; | |||
| String dosage; | |||
| int quantity; | |||
| String howToUse; | |||
| int suppliesInWarehouseId; | |||
| int equipmentOfCustomerId; | |||
| SuppliesUsing( | |||
| {this.id, | |||
| this.dosage, | |||
| this.quantity, | |||
| this.howToUse, | |||
| this.suppliesInWarehouseId, | |||
| this.equipmentOfCustomerId}); | |||
| SuppliesUsing.fromJson(Map<String, dynamic> json) { | |||
| id = json['id']; | |||
| dosage = json['dosage']; | |||
| quantity = json['quantity']; | |||
| howToUse = json['howToUse']; | |||
| suppliesInWarehouseId = json['suppliesInWarehouseId']; | |||
| equipmentOfCustomerId = json['equipmentOfCustomerId']; | |||
| } | |||
| Map<String, dynamic> toJson() { | |||
| final Map<String, dynamic> data = new Map<String, dynamic>(); | |||
| data['id'] = this.id; | |||
| data['dosage'] = this.dosage; | |||
| data['quantity'] = this.quantity; | |||
| data['howToUse'] = this.howToUse; | |||
| data['suppliesInWarehouseId'] = this.suppliesInWarehouseId; | |||
| data['equipmentOfCustomerId'] = this.equipmentOfCustomerId; | |||
| return data; | |||
| } | |||
| } | |||
| @@ -0,0 +1,36 @@ | |||
| class UseWater { | |||
| int id; | |||
| int cropId; | |||
| String executeDate; | |||
| String description; | |||
| String waterType; | |||
| num amount; | |||
| UseWater( | |||
| {this.id, | |||
| this.cropId, | |||
| this.executeDate, | |||
| this.description, | |||
| this.waterType, | |||
| this.amount}); | |||
| UseWater.fromJson(Map<String, dynamic> json) { | |||
| id = json['id']; | |||
| cropId = json['cropId']; | |||
| executeDate = json['executeDate']; | |||
| description = json['description']; | |||
| waterType = json['waterType']; | |||
| amount = json['amount']; | |||
| } | |||
| Map<String, dynamic> toJson() { | |||
| final Map<String, dynamic> data = new Map<String, dynamic>(); | |||
| data['id'] = this.id; | |||
| data['cropId'] = this.cropId; | |||
| data['executeDate'] = this.executeDate; | |||
| data['description'] = this.description; | |||
| data['waterType'] = this.waterType; | |||
| data['amount'] = this.amount; | |||
| return data; | |||
| } | |||
| } | |||
| @@ -0,0 +1,14 @@ | |||
| import 'package:flutter/material.dart'; | |||
| class EditActionDiseaseScreen extends StatefulWidget { | |||
| @override | |||
| _EditActionDiseaseScreenState createState() => | |||
| _EditActionDiseaseScreenState(); | |||
| } | |||
| class _EditActionDiseaseScreenState extends State<EditActionDiseaseScreen> { | |||
| @override | |||
| Widget build(BuildContext context) { | |||
| return Container(); | |||
| } | |||
| } | |||
| @@ -0,0 +1,13 @@ | |||
| import 'package:flutter/material.dart'; | |||
| class EditActionDungScreen extends StatefulWidget { | |||
| @override | |||
| _EditActionDungScreenState createState() => _EditActionDungScreenState(); | |||
| } | |||
| class _EditActionDungScreenState extends State<EditActionDungScreen> { | |||
| @override | |||
| Widget build(BuildContext context) { | |||
| return Container(); | |||
| } | |||
| } | |||
| @@ -0,0 +1,13 @@ | |||
| import 'package:flutter/material.dart'; | |||
| class EditActionEndScreen extends StatefulWidget { | |||
| @override | |||
| _EditActionEndScreenState createState() => _EditActionEndScreenState(); | |||
| } | |||
| class _EditActionEndScreenState extends State<EditActionEndScreen> { | |||
| @override | |||
| Widget build(BuildContext context) { | |||
| return Container(); | |||
| } | |||
| } | |||
| @@ -0,0 +1,15 @@ | |||
| import 'package:flutter/material.dart'; | |||
| class EditActionEnvironmentUpdate extends StatefulWidget { | |||
| @override | |||
| _EditActionEnvironmentUpdateState createState() => | |||
| _EditActionEnvironmentUpdateState(); | |||
| } | |||
| class _EditActionEnvironmentUpdateState | |||
| extends State<EditActionEnvironmentUpdate> { | |||
| @override | |||
| Widget build(BuildContext context) { | |||
| return Container(); | |||
| } | |||
| } | |||
| @@ -0,0 +1,14 @@ | |||
| import 'package:flutter/material.dart'; | |||
| class EditActionHarvestScreen extends StatefulWidget { | |||
| @override | |||
| _EditActionHarvestScreenState createState() => | |||
| _EditActionHarvestScreenState(); | |||
| } | |||
| class _EditActionHarvestScreenState extends State<EditActionHarvestScreen> { | |||
| @override | |||
| Widget build(BuildContext context) { | |||
| return Container(); | |||
| } | |||
| } | |||
| @@ -0,0 +1,15 @@ | |||
| import 'package:flutter/material.dart'; | |||
| class EditActionHarvestProcessScreen extends StatefulWidget { | |||
| @override | |||
| _EditActionHarvestProcessScreenState createState() => | |||
| _EditActionHarvestProcessScreenState(); | |||
| } | |||
| class _EditActionHarvestProcessScreenState | |||
| extends State<EditActionHarvestProcessScreen> { | |||
| @override | |||
| Widget build(BuildContext context) { | |||
| return Container(); | |||
| } | |||
| } | |||
| @@ -0,0 +1,14 @@ | |||
| import 'package:flutter/material.dart'; | |||
| class EditActionPackingScreen extends StatefulWidget { | |||
| @override | |||
| _EditActionPackingScreenState createState() => | |||
| _EditActionPackingScreenState(); | |||
| } | |||
| class _EditActionPackingScreenState extends State<EditActionPackingScreen> { | |||
| @override | |||
| Widget build(BuildContext context) { | |||
| return Container(); | |||
| } | |||
| } | |||
| @@ -0,0 +1,13 @@ | |||
| import 'package:flutter/material.dart'; | |||
| class EditActionSellScreen extends StatefulWidget { | |||
| @override | |||
| _EditActionSellScreenState createState() => _EditActionSellScreenState(); | |||
| } | |||
| class _EditActionSellScreenState extends State<EditActionSellScreen> { | |||
| @override | |||
| Widget build(BuildContext context) { | |||
| return Container(); | |||
| } | |||
| } | |||
| @@ -0,0 +1,14 @@ | |||
| import 'package:flutter/material.dart'; | |||
| class EditActionSprayingScreen extends StatefulWidget { | |||
| @override | |||
| _EditActionSprayingScreenState createState() => | |||
| _EditActionSprayingScreenState(); | |||
| } | |||
| class _EditActionSprayingScreenState extends State<EditActionSprayingScreen> { | |||
| @override | |||
| Widget build(BuildContext context) { | |||
| return Container(); | |||
| } | |||
| } | |||
| @@ -0,0 +1,14 @@ | |||
| import 'package:flutter/material.dart'; | |||
| class EditActionUseWaterScreen extends StatefulWidget { | |||
| @override | |||
| _EditActionUseWaterScreenState createState() => | |||
| _EditActionUseWaterScreenState(); | |||
| } | |||
| class _EditActionUseWaterScreenState extends State<EditActionUseWaterScreen> { | |||
| @override | |||
| Widget build(BuildContext context) { | |||
| return Container(); | |||
| } | |||
| } | |||