|
@@ -1,7 +1,14 @@
|
|
|
|
|
+import '/backend/api_requests/api_calls.dart';
|
|
|
|
|
+import '/flutter_flow/flutter_flow_drop_down.dart';
|
|
|
import '/flutter_flow/flutter_flow_theme.dart';
|
|
import '/flutter_flow/flutter_flow_theme.dart';
|
|
|
import '/flutter_flow/flutter_flow_util.dart';
|
|
import '/flutter_flow/flutter_flow_util.dart';
|
|
|
import '/flutter_flow/flutter_flow_widgets.dart';
|
|
import '/flutter_flow/flutter_flow_widgets.dart';
|
|
|
|
|
+import '/flutter_flow/form_field_controller.dart';
|
|
|
|
|
+import '/flutter_flow/upload_data.dart';
|
|
|
import 'dart:ui';
|
|
import 'dart:ui';
|
|
|
|
|
+import '/backend/schema/structs/index.dart';
|
|
|
|
|
+import '/custom_code/actions/index.dart' as actions;
|
|
|
|
|
+import '/flutter_flow/custom_functions.dart' as functions;
|
|
|
import 'stadsactiviteit_aanmaken_widget.dart'
|
|
import 'stadsactiviteit_aanmaken_widget.dart'
|
|
|
show StadsactiviteitAanmakenWidget;
|
|
show StadsactiviteitAanmakenWidget;
|
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
@@ -12,6 +19,89 @@ import 'package:provider/provider.dart';
|
|
|
|
|
|
|
|
class StadsactiviteitAanmakenModel
|
|
class StadsactiviteitAanmakenModel
|
|
|
extends FlutterFlowModel<StadsactiviteitAanmakenWidget> {
|
|
extends FlutterFlowModel<StadsactiviteitAanmakenWidget> {
|
|
|
|
|
+ /// Local state fields for this page.
|
|
|
|
|
+
|
|
|
|
|
+ String? _createProvincieID;
|
|
|
|
|
+ set createProvincieID(String? value) {
|
|
|
|
|
+ _createProvincieID = value;
|
|
|
|
|
+ debugLogWidgetClass(this);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ String? get createProvincieID => _createProvincieID;
|
|
|
|
|
+
|
|
|
|
|
+ String? _createGemeenteID;
|
|
|
|
|
+ set createGemeenteID(String? value) {
|
|
|
|
|
+ _createGemeenteID = value;
|
|
|
|
|
+ debugLogWidgetClass(this);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ String? get createGemeenteID => _createGemeenteID;
|
|
|
|
|
+
|
|
|
|
|
+ String? _createPlaatsID;
|
|
|
|
|
+ set createPlaatsID(String? value) {
|
|
|
|
|
+ _createPlaatsID = value;
|
|
|
|
|
+ debugLogWidgetClass(this);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ String? get createPlaatsID => _createPlaatsID;
|
|
|
|
|
+
|
|
|
|
|
+ late LoggableList<String> _createCategorieTids = LoggableList([]);
|
|
|
|
|
+ set createCategorieTids(List<String> value) {
|
|
|
|
|
+ if (value != null) {
|
|
|
|
|
+ _createCategorieTids = LoggableList(value);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ debugLogWidgetClass(this);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ List<String> get createCategorieTids =>
|
|
|
|
|
+ _createCategorieTids?..logger = () => debugLogWidgetClass(this);
|
|
|
|
|
+ void addToCreateCategorieTids(String item) => createCategorieTids.add(item);
|
|
|
|
|
+ void removeFromCreateCategorieTids(String item) =>
|
|
|
|
|
+ createCategorieTids.remove(item);
|
|
|
|
|
+ void removeAtIndexFromCreateCategorieTids(int index) =>
|
|
|
|
|
+ createCategorieTids.removeAt(index);
|
|
|
|
|
+ void insertAtIndexInCreateCategorieTids(int index, String item) =>
|
|
|
|
|
+ createCategorieTids.insert(index, item);
|
|
|
|
|
+ void updateCreateCategorieTidsAtIndex(int index, Function(String) updateFn) =>
|
|
|
|
|
+ createCategorieTids[index] = updateFn(createCategorieTids[index]);
|
|
|
|
|
+
|
|
|
|
|
+ String? _createEntreeTid;
|
|
|
|
|
+ set createEntreeTid(String? value) {
|
|
|
|
|
+ _createEntreeTid = value;
|
|
|
|
|
+ debugLogWidgetClass(this);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ String? get createEntreeTid => _createEntreeTid;
|
|
|
|
|
+
|
|
|
|
|
+ String? _createLogoFid;
|
|
|
|
|
+ set createLogoFid(String? value) {
|
|
|
|
|
+ _createLogoFid = value;
|
|
|
|
|
+ debugLogWidgetClass(this);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ String? get createLogoFid => _createLogoFid;
|
|
|
|
|
+
|
|
|
|
|
+ late LoggableList<String> _createFotosFids = LoggableList([]);
|
|
|
|
|
+ set createFotosFids(List<String> value) {
|
|
|
|
|
+ if (value != null) {
|
|
|
|
|
+ _createFotosFids = LoggableList(value);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ debugLogWidgetClass(this);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ List<String> get createFotosFids =>
|
|
|
|
|
+ _createFotosFids?..logger = () => debugLogWidgetClass(this);
|
|
|
|
|
+ void addToCreateFotosFids(String item) => createFotosFids.add(item);
|
|
|
|
|
+ void removeFromCreateFotosFids(String item) => createFotosFids.remove(item);
|
|
|
|
|
+ void removeAtIndexFromCreateFotosFids(int index) =>
|
|
|
|
|
+ createFotosFids.removeAt(index);
|
|
|
|
|
+ void insertAtIndexInCreateFotosFids(int index, String item) =>
|
|
|
|
|
+ createFotosFids.insert(index, item);
|
|
|
|
|
+ void updateCreateFotosFidsAtIndex(int index, Function(String) updateFn) =>
|
|
|
|
|
+ createFotosFids[index] = updateFn(createFotosFids[index]);
|
|
|
|
|
+
|
|
|
/// State fields for stateful widgets in this page.
|
|
/// State fields for stateful widgets in this page.
|
|
|
|
|
|
|
|
// State field(s) for TextFieldTitel widget.
|
|
// State field(s) for TextFieldTitel widget.
|
|
@@ -19,18 +109,18 @@ class StadsactiviteitAanmakenModel
|
|
|
TextEditingController? textFieldTitelTextController;
|
|
TextEditingController? textFieldTitelTextController;
|
|
|
String? Function(BuildContext, String?)?
|
|
String? Function(BuildContext, String?)?
|
|
|
textFieldTitelTextControllerValidator;
|
|
textFieldTitelTextControllerValidator;
|
|
|
|
|
+ DateTime? datePicked1;
|
|
|
// State field(s) for TextFieldDatumStart widget.
|
|
// State field(s) for TextFieldDatumStart widget.
|
|
|
FocusNode? textFieldDatumStartFocusNode;
|
|
FocusNode? textFieldDatumStartFocusNode;
|
|
|
TextEditingController? textFieldDatumStartTextController;
|
|
TextEditingController? textFieldDatumStartTextController;
|
|
|
String? Function(BuildContext, String?)?
|
|
String? Function(BuildContext, String?)?
|
|
|
textFieldDatumStartTextControllerValidator;
|
|
textFieldDatumStartTextControllerValidator;
|
|
|
- DateTime? datePicked1;
|
|
|
|
|
|
|
+ DateTime? datePicked2;
|
|
|
// State field(s) for TextFieldDatumEind widget.
|
|
// State field(s) for TextFieldDatumEind widget.
|
|
|
FocusNode? textFieldDatumEindFocusNode;
|
|
FocusNode? textFieldDatumEindFocusNode;
|
|
|
TextEditingController? textFieldDatumEindTextController;
|
|
TextEditingController? textFieldDatumEindTextController;
|
|
|
String? Function(BuildContext, String?)?
|
|
String? Function(BuildContext, String?)?
|
|
|
textFieldDatumEindTextControllerValidator;
|
|
textFieldDatumEindTextControllerValidator;
|
|
|
- DateTime? datePicked2;
|
|
|
|
|
// State field(s) for TextFieldOmschrijving widget.
|
|
// State field(s) for TextFieldOmschrijving widget.
|
|
|
FocusNode? textFieldOmschrijvingFocusNode;
|
|
FocusNode? textFieldOmschrijvingFocusNode;
|
|
|
TextEditingController? textFieldOmschrijvingTextController;
|
|
TextEditingController? textFieldOmschrijvingTextController;
|
|
@@ -76,6 +166,107 @@ class StadsactiviteitAanmakenModel
|
|
|
TextEditingController? textFieldWebsiteURLTextController;
|
|
TextEditingController? textFieldWebsiteURLTextController;
|
|
|
String? Function(BuildContext, String?)?
|
|
String? Function(BuildContext, String?)?
|
|
|
textFieldWebsiteURLTextControllerValidator;
|
|
textFieldWebsiteURLTextControllerValidator;
|
|
|
|
|
+ // State field(s) for DropDownGemeenten-mijngemeenten widget.
|
|
|
|
|
+ String? _dropDownGemeentenMijngemeentenValue;
|
|
|
|
|
+ set dropDownGemeentenMijngemeentenValue(String? value) {
|
|
|
|
|
+ _dropDownGemeentenMijngemeentenValue = value;
|
|
|
|
|
+ debugLogWidgetClass(this);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ String? get dropDownGemeentenMijngemeentenValue =>
|
|
|
|
|
+ _dropDownGemeentenMijngemeentenValue;
|
|
|
|
|
+
|
|
|
|
|
+ FormFieldController<String>? dropDownGemeentenMijngemeentenValueController;
|
|
|
|
|
+ // State field(s) for DropDownProvincie widget.
|
|
|
|
|
+ String? _dropDownProvincieValue;
|
|
|
|
|
+ set dropDownProvincieValue(String? value) {
|
|
|
|
|
+ _dropDownProvincieValue = value;
|
|
|
|
|
+ debugLogWidgetClass(this);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ String? get dropDownProvincieValue => _dropDownProvincieValue;
|
|
|
|
|
+
|
|
|
|
|
+ FormFieldController<String>? dropDownProvincieValueController;
|
|
|
|
|
+ // State field(s) for DropDownGemeente widget.
|
|
|
|
|
+ String? _dropDownGemeenteValue;
|
|
|
|
|
+ set dropDownGemeenteValue(String? value) {
|
|
|
|
|
+ _dropDownGemeenteValue = value;
|
|
|
|
|
+ debugLogWidgetClass(this);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ String? get dropDownGemeenteValue => _dropDownGemeenteValue;
|
|
|
|
|
+
|
|
|
|
|
+ FormFieldController<String>? dropDownGemeenteValueController;
|
|
|
|
|
+ // State field(s) for DropDownPlaats widget.
|
|
|
|
|
+ String? _dropDownPlaatsValue;
|
|
|
|
|
+ set dropDownPlaatsValue(String? value) {
|
|
|
|
|
+ _dropDownPlaatsValue = value;
|
|
|
|
|
+ debugLogWidgetClass(this);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ String? get dropDownPlaatsValue => _dropDownPlaatsValue;
|
|
|
|
|
+
|
|
|
|
|
+ FormFieldController<String>? dropDownPlaatsValueController;
|
|
|
|
|
+ // State field(s) for DropDownCategorieen widget.
|
|
|
|
|
+ LoggableList<String>? _dropDownCategorieenValue;
|
|
|
|
|
+ set dropDownCategorieenValue(List<String>? value) {
|
|
|
|
|
+ if (value != null) {
|
|
|
|
|
+ _dropDownCategorieenValue = LoggableList(value);
|
|
|
|
|
+ } else {
|
|
|
|
|
+ _dropDownCategorieenValue = null;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ debugLogWidgetClass(this);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ List<String>? get dropDownCategorieenValue =>
|
|
|
|
|
+ _dropDownCategorieenValue?..logger = () => debugLogWidgetClass(this);
|
|
|
|
|
+
|
|
|
|
|
+ FormFieldController<List<String>>? dropDownCategorieenValueController;
|
|
|
|
|
+ // State field(s) for DropDownEntree widget.
|
|
|
|
|
+ String? _dropDownEntreeValue;
|
|
|
|
|
+ set dropDownEntreeValue(String? value) {
|
|
|
|
|
+ _dropDownEntreeValue = value;
|
|
|
|
|
+ debugLogWidgetClass(this);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ String? get dropDownEntreeValue => _dropDownEntreeValue;
|
|
|
|
|
+
|
|
|
|
|
+ FormFieldController<String>? dropDownEntreeValueController;
|
|
|
|
|
+ bool isDataUploading_uploadDataCnm = false;
|
|
|
|
|
+ FFUploadedFile uploadedLocalFile_uploadDataCnm =
|
|
|
|
|
+ FFUploadedFile(bytes: Uint8List.fromList([]), originalFilename: '');
|
|
|
|
|
+
|
|
|
|
|
+ // Stores action output result for [Custom Action - bestandUpload] action in ButtonLogo widget.
|
|
|
|
|
+ dynamic? _logouploadResult;
|
|
|
|
|
+ set logouploadResult(dynamic? value) {
|
|
|
|
|
+ _logouploadResult = value;
|
|
|
|
|
+ debugLogWidgetClass(this);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ dynamic? get logouploadResult => _logouploadResult;
|
|
|
|
|
+
|
|
|
|
|
+ bool isDataUploading_uploadDataFotoos = false;
|
|
|
|
|
+ FFUploadedFile uploadedLocalFile_uploadDataFotoos =
|
|
|
|
|
+ FFUploadedFile(bytes: Uint8List.fromList([]), originalFilename: '');
|
|
|
|
|
+
|
|
|
|
|
+ // Stores action output result for [Custom Action - bestandUpload] action in ButtonFotos widget.
|
|
|
|
|
+ dynamic? _fotouploadResult;
|
|
|
|
|
+ set fotouploadResult(dynamic? value) {
|
|
|
|
|
+ _fotouploadResult = value;
|
|
|
|
|
+ debugLogWidgetClass(this);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ dynamic? get fotouploadResult => _fotouploadResult;
|
|
|
|
|
+
|
|
|
|
|
+ // Stores action output result for [Custom Action - stadsactiviteitCreate] action in ButtonIndienen widget.
|
|
|
|
|
+ dynamic? _createResult;
|
|
|
|
|
+ set createResult(dynamic? value) {
|
|
|
|
|
+ _createResult = value;
|
|
|
|
|
+ debugLogWidgetClass(this);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ dynamic? get createResult => _createResult;
|
|
|
|
|
|
|
|
final Map<String, DebugDataField> debugGeneratorVariables = {};
|
|
final Map<String, DebugDataField> debugGeneratorVariables = {};
|
|
|
final Map<String, DebugDataField> debugBackendQueries = {};
|
|
final Map<String, DebugDataField> debugBackendQueries = {};
|
|
@@ -126,6 +317,80 @@ class StadsactiviteitAanmakenModel
|
|
|
|
|
|
|
|
@override
|
|
@override
|
|
|
WidgetClassDebugData toWidgetClassDebugData() => WidgetClassDebugData(
|
|
WidgetClassDebugData toWidgetClassDebugData() => WidgetClassDebugData(
|
|
|
|
|
+ localStates: {
|
|
|
|
|
+ 'createProvincieID': debugSerializeParam(
|
|
|
|
|
+ createProvincieID,
|
|
|
|
|
+ ParamType.String,
|
|
|
|
|
+ link:
|
|
|
|
|
+ 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmaken',
|
|
|
|
|
+ searchReference:
|
|
|
|
|
+ 'reference=QiYKGgoRY3JlYXRlUHJvdmluY2llSUQSBXIwb2E2KgISAHIECAMgAFABWhFjcmVhdGVQcm92aW5jaWVJRGIXc3RhZHNhY3Rpdml0ZWl0QWFubWFrZW4=',
|
|
|
|
|
+ name: 'String',
|
|
|
|
|
+ nullable: true,
|
|
|
|
|
+ ),
|
|
|
|
|
+ 'createGemeenteID': debugSerializeParam(
|
|
|
|
|
+ createGemeenteID,
|
|
|
|
|
+ ParamType.String,
|
|
|
|
|
+ link:
|
|
|
|
|
+ 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmaken',
|
|
|
|
|
+ searchReference:
|
|
|
|
|
+ 'reference=QiUKGQoQY3JlYXRlR2VtZWVudGVJRBIFYmFwZW0qAhIAcgQIAyAAUAFaEGNyZWF0ZUdlbWVlbnRlSURiF3N0YWRzYWN0aXZpdGVpdEFhbm1ha2Vu',
|
|
|
|
|
+ name: 'String',
|
|
|
|
|
+ nullable: true,
|
|
|
|
|
+ ),
|
|
|
|
|
+ 'createPlaatsID': debugSerializeParam(
|
|
|
|
|
+ createPlaatsID,
|
|
|
|
|
+ ParamType.String,
|
|
|
|
|
+ link:
|
|
|
|
|
+ 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmaken',
|
|
|
|
|
+ searchReference:
|
|
|
|
|
+ 'reference=QiMKFwoOY3JlYXRlUGxhYXRzSUQSBWd6bW1uKgISAHIECAMgAFABWg5jcmVhdGVQbGFhdHNJRGIXc3RhZHNhY3Rpdml0ZWl0QWFubWFrZW4=',
|
|
|
|
|
+ name: 'String',
|
|
|
|
|
+ nullable: true,
|
|
|
|
|
+ ),
|
|
|
|
|
+ 'createCategorieTids': debugSerializeParam(
|
|
|
|
|
+ createCategorieTids,
|
|
|
|
|
+ ParamType.String,
|
|
|
|
|
+ isList: true,
|
|
|
|
|
+ link:
|
|
|
|
|
+ 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmaken',
|
|
|
|
|
+ searchReference:
|
|
|
|
|
+ 'reference=QiYKHAoTY3JlYXRlQ2F0ZWdvcmllVGlkcxIFcjQzeGRyBhICCAMgAVABWhNjcmVhdGVDYXRlZ29yaWVUaWRzYhdzdGFkc2FjdGl2aXRlaXRBYW5tYWtlbg==',
|
|
|
|
|
+ name: 'String',
|
|
|
|
|
+ nullable: false,
|
|
|
|
|
+ ),
|
|
|
|
|
+ 'createEntreeTid': debugSerializeParam(
|
|
|
|
|
+ createEntreeTid,
|
|
|
|
|
+ ParamType.String,
|
|
|
|
|
+ link:
|
|
|
|
|
+ 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmaken',
|
|
|
|
|
+ searchReference:
|
|
|
|
|
+ 'reference=QiQKGAoPY3JlYXRlRW50cmVlVGlkEgU2cm90YSoCEgByBAgDIAFQAVoPY3JlYXRlRW50cmVlVGlkYhdzdGFkc2FjdGl2aXRlaXRBYW5tYWtlbg==',
|
|
|
|
|
+ name: 'String',
|
|
|
|
|
+ nullable: true,
|
|
|
|
|
+ ),
|
|
|
|
|
+ 'createLogoFid': debugSerializeParam(
|
|
|
|
|
+ createLogoFid,
|
|
|
|
|
+ ParamType.String,
|
|
|
|
|
+ link:
|
|
|
|
|
+ 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmaken',
|
|
|
|
|
+ searchReference:
|
|
|
|
|
+ 'reference=QiIKFgoNY3JlYXRlTG9nb0ZpZBIFMXZvanoqAhIAcgQIAyAAUAFaDWNyZWF0ZUxvZ29GaWRiF3N0YWRzYWN0aXZpdGVpdEFhbm1ha2Vu',
|
|
|
|
|
+ name: 'String',
|
|
|
|
|
+ nullable: true,
|
|
|
|
|
+ ),
|
|
|
|
|
+ 'createFotosFids': debugSerializeParam(
|
|
|
|
|
+ createFotosFids,
|
|
|
|
|
+ ParamType.String,
|
|
|
|
|
+ isList: true,
|
|
|
|
|
+ link:
|
|
|
|
|
+ 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmaken',
|
|
|
|
|
+ searchReference:
|
|
|
|
|
+ 'reference=QiIKGAoPY3JlYXRlRm90b3NGaWRzEgU5enlvdnIGEgIIAyAAUAFaD2NyZWF0ZUZvdG9zRmlkc2IXc3RhZHNhY3Rpdml0ZWl0QWFubWFrZW4=',
|
|
|
|
|
+ name: 'String',
|
|
|
|
|
+ nullable: false,
|
|
|
|
|
+ )
|
|
|
|
|
+ }.entries,
|
|
|
widgetStates: {
|
|
widgetStates: {
|
|
|
'textFieldTitelText': debugSerializeParam(
|
|
'textFieldTitelText': debugSerializeParam(
|
|
|
textFieldTitelTextController?.text,
|
|
textFieldTitelTextController?.text,
|
|
@@ -222,6 +487,81 @@ class StadsactiviteitAanmakenModel
|
|
|
'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmaken',
|
|
'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmaken',
|
|
|
name: 'String',
|
|
name: 'String',
|
|
|
nullable: true,
|
|
nullable: true,
|
|
|
|
|
+ ),
|
|
|
|
|
+ 'dropDownGemeentenMijngemeentenValue': debugSerializeParam(
|
|
|
|
|
+ dropDownGemeentenMijngemeentenValue,
|
|
|
|
|
+ ParamType.String,
|
|
|
|
|
+ link:
|
|
|
|
|
+ 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmaken',
|
|
|
|
|
+ name: 'String',
|
|
|
|
|
+ nullable: true,
|
|
|
|
|
+ ),
|
|
|
|
|
+ 'dropDownProvincieValue': debugSerializeParam(
|
|
|
|
|
+ dropDownProvincieValue,
|
|
|
|
|
+ ParamType.String,
|
|
|
|
|
+ link:
|
|
|
|
|
+ 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmaken',
|
|
|
|
|
+ name: 'String',
|
|
|
|
|
+ nullable: true,
|
|
|
|
|
+ ),
|
|
|
|
|
+ 'dropDownGemeenteValue': debugSerializeParam(
|
|
|
|
|
+ dropDownGemeenteValue,
|
|
|
|
|
+ ParamType.String,
|
|
|
|
|
+ link:
|
|
|
|
|
+ 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmaken',
|
|
|
|
|
+ name: 'String',
|
|
|
|
|
+ nullable: true,
|
|
|
|
|
+ ),
|
|
|
|
|
+ 'dropDownPlaatsValue': debugSerializeParam(
|
|
|
|
|
+ dropDownPlaatsValue,
|
|
|
|
|
+ ParamType.String,
|
|
|
|
|
+ link:
|
|
|
|
|
+ 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmaken',
|
|
|
|
|
+ name: 'String',
|
|
|
|
|
+ nullable: true,
|
|
|
|
|
+ ),
|
|
|
|
|
+ 'dropDownCategorieenValue': debugSerializeParam(
|
|
|
|
|
+ dropDownCategorieenValue,
|
|
|
|
|
+ ParamType.String,
|
|
|
|
|
+ isList: true,
|
|
|
|
|
+ link:
|
|
|
|
|
+ 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmaken',
|
|
|
|
|
+ name: 'String',
|
|
|
|
|
+ nullable: true,
|
|
|
|
|
+ ),
|
|
|
|
|
+ 'dropDownEntreeValue': debugSerializeParam(
|
|
|
|
|
+ dropDownEntreeValue,
|
|
|
|
|
+ ParamType.String,
|
|
|
|
|
+ link:
|
|
|
|
|
+ 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmaken',
|
|
|
|
|
+ name: 'String',
|
|
|
|
|
+ nullable: true,
|
|
|
|
|
+ )
|
|
|
|
|
+ }.entries,
|
|
|
|
|
+ actionOutputs: {
|
|
|
|
|
+ 'logouploadResult': debugSerializeParam(
|
|
|
|
|
+ logouploadResult,
|
|
|
|
|
+ ParamType.JSON,
|
|
|
|
|
+ link:
|
|
|
|
|
+ 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmaken',
|
|
|
|
|
+ name: 'dynamic',
|
|
|
|
|
+ nullable: true,
|
|
|
|
|
+ ),
|
|
|
|
|
+ 'fotouploadResult': debugSerializeParam(
|
|
|
|
|
+ fotouploadResult,
|
|
|
|
|
+ ParamType.JSON,
|
|
|
|
|
+ link:
|
|
|
|
|
+ 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmaken',
|
|
|
|
|
+ name: 'dynamic',
|
|
|
|
|
+ nullable: true,
|
|
|
|
|
+ ),
|
|
|
|
|
+ 'createResult': debugSerializeParam(
|
|
|
|
|
+ createResult,
|
|
|
|
|
+ ParamType.JSON,
|
|
|
|
|
+ link:
|
|
|
|
|
+ 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmaken',
|
|
|
|
|
+ name: 'dynamic',
|
|
|
|
|
+ nullable: true,
|
|
|
)
|
|
)
|
|
|
}.entries,
|
|
}.entries,
|
|
|
generatorVariables: debugGeneratorVariables.entries,
|
|
generatorVariables: debugGeneratorVariables.entries,
|