| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632 |
- 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_util.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 '/backend/schema/structs/index.dart';
- import '/custom_code/actions/index.dart' as actions;
- import '/flutter_flow/custom_functions.dart' as functions;
- import 'stadsactiviteit_aanmaken_copy2_widget.dart'
- show StadsactiviteitAanmakenCopy2Widget;
- import 'package:flutter/foundation.dart';
- import 'package:flutter/material.dart';
- import 'package:flutter_spinkit/flutter_spinkit.dart';
- import 'package:google_fonts/google_fonts.dart';
- import 'package:provider/provider.dart';
- class StadsactiviteitAanmakenCopy2Model
- extends FlutterFlowModel<StadsactiviteitAanmakenCopy2Widget> {
- /// 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]);
- String? _createLogoUrl;
- set createLogoUrl(String? value) {
- _createLogoUrl = value;
- debugLogWidgetClass(this);
- }
- String? get createLogoUrl => _createLogoUrl;
- late LoggableList<String> _createFotosUrls = LoggableList([]);
- set createFotosUrls(List<String> value) {
- if (value != null) {
- _createFotosUrls = LoggableList(value);
- }
- debugLogWidgetClass(this);
- }
- List<String> get createFotosUrls =>
- _createFotosUrls?..logger = () => debugLogWidgetClass(this);
- void addToCreateFotosUrls(String item) => createFotosUrls.add(item);
- void removeFromCreateFotosUrls(String item) => createFotosUrls.remove(item);
- void removeAtIndexFromCreateFotosUrls(int index) =>
- createFotosUrls.removeAt(index);
- void insertAtIndexInCreateFotosUrls(int index, String item) =>
- createFotosUrls.insert(index, item);
- void updateCreateFotosUrlsAtIndex(int index, Function(String) updateFn) =>
- createFotosUrls[index] = updateFn(createFotosUrls[index]);
- /// State fields for stateful widgets in this page.
- // 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 TextFieldTitel widget.
- FocusNode? textFieldTitelFocusNode;
- TextEditingController? textFieldTitelTextController;
- String? Function(BuildContext, String?)?
- textFieldTitelTextControllerValidator;
- // State field(s) for TextFieldOmschrijving widget.
- FocusNode? textFieldOmschrijvingFocusNode;
- TextEditingController? textFieldOmschrijvingTextController;
- String? Function(BuildContext, String?)?
- textFieldOmschrijvingTextControllerValidator;
- DateTime? datePicked1;
- // State field(s) for TextFieldDatumStart widget.
- FocusNode? textFieldDatumStartFocusNode;
- TextEditingController? textFieldDatumStartTextController;
- String? Function(BuildContext, String?)?
- textFieldDatumStartTextControllerValidator;
- DateTime? datePicked2;
- // State field(s) for TextFieldDatumEind widget.
- FocusNode? textFieldDatumEindFocusNode;
- TextEditingController? textFieldDatumEindTextController;
- String? Function(BuildContext, String?)?
- textFieldDatumEindTextControllerValidator;
- // State field(s) for TextFieldOrganisator widget.
- FocusNode? textFieldOrganisatorFocusNode;
- TextEditingController? textFieldOrganisatorTextController;
- String? Function(BuildContext, String?)?
- textFieldOrganisatorTextControllerValidator;
- // 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 TextFieldContact widget.
- FocusNode? textFieldContactFocusNode;
- TextEditingController? textFieldContactTextController;
- String? Function(BuildContext, String?)?
- textFieldContactTextControllerValidator;
- // State field(s) for TextFieldAdres widget.
- FocusNode? textFieldAdresFocusNode;
- TextEditingController? textFieldAdresTextController;
- String? Function(BuildContext, String?)?
- textFieldAdresTextControllerValidator;
- // State field(s) for TextFieldPostcode widget.
- FocusNode? textFieldPostcodeFocusNode;
- TextEditingController? textFieldPostcodeTextController;
- String? Function(BuildContext, String?)?
- textFieldPostcodeTextControllerValidator;
- // State field(s) for TextFieldPlaats widget.
- FocusNode? textFieldPlaatsFocusNode;
- TextEditingController? textFieldPlaatsTextController;
- String? Function(BuildContext, String?)?
- textFieldPlaatsTextControllerValidator;
- // State field(s) for TextFieldWebsiteURL widget.
- FocusNode? textFieldWebsiteURLFocusNode;
- TextEditingController? textFieldWebsiteURLTextController;
- String? Function(BuildContext, String?)?
- textFieldWebsiteURLTextControllerValidator;
- // State field(s) for DropDownEntree widget.
- String? _dropDownEntreeValue;
- set dropDownEntreeValue(String? value) {
- _dropDownEntreeValue = value;
- debugLogWidgetClass(this);
- }
- String? get dropDownEntreeValue => _dropDownEntreeValue;
- FormFieldController<String>? dropDownEntreeValueController;
- // State field(s) for TextFieldToelichtingEntree widget.
- FocusNode? textFieldToelichtingEntreeFocusNode;
- TextEditingController? textFieldToelichtingEntreeTextController;
- String? Function(BuildContext, String?)?
- textFieldToelichtingEntreeTextControllerValidator;
- // State field(s) for TextFieldEntreeprijs widget.
- FocusNode? textFieldEntreeprijsFocusNode;
- TextEditingController? textFieldEntreeprijsTextController;
- String? Function(BuildContext, String?)?
- textFieldEntreeprijsTextControllerValidator;
- bool isDataUploading_uploadDatalogoUpload = false;
- FFUploadedFile uploadedLocalFile_uploadDatalogoUpload =
- 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_uploadDataFotoos2 = false;
- FFUploadedFile uploadedLocalFile_uploadDataFotoos2 =
- 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> debugBackendQueries = {};
- final Map<String, FlutterFlowModel> widgetBuilderComponents = {};
- @override
- void initState(BuildContext context) {
- debugLogWidgetClass(this);
- }
- @override
- void dispose() {
- textFieldTitelFocusNode?.dispose();
- textFieldTitelTextController?.dispose();
- textFieldOmschrijvingFocusNode?.dispose();
- textFieldOmschrijvingTextController?.dispose();
- textFieldDatumStartFocusNode?.dispose();
- textFieldDatumStartTextController?.dispose();
- textFieldDatumEindFocusNode?.dispose();
- textFieldDatumEindTextController?.dispose();
- textFieldOrganisatorFocusNode?.dispose();
- textFieldOrganisatorTextController?.dispose();
- textFieldContactFocusNode?.dispose();
- textFieldContactTextController?.dispose();
- textFieldAdresFocusNode?.dispose();
- textFieldAdresTextController?.dispose();
- textFieldPostcodeFocusNode?.dispose();
- textFieldPostcodeTextController?.dispose();
- textFieldPlaatsFocusNode?.dispose();
- textFieldPlaatsTextController?.dispose();
- textFieldWebsiteURLFocusNode?.dispose();
- textFieldWebsiteURLTextController?.dispose();
- textFieldToelichtingEntreeFocusNode?.dispose();
- textFieldToelichtingEntreeTextController?.dispose();
- textFieldEntreeprijsFocusNode?.dispose();
- textFieldEntreeprijsTextController?.dispose();
- }
- @override
- WidgetClassDebugData toWidgetClassDebugData() => WidgetClassDebugData(
- localStates: {
- 'createProvincieID': debugSerializeParam(
- createProvincieID,
- ParamType.String,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- searchReference:
- 'reference=QiYKGgoRY3JlYXRlUHJvdmluY2llSUQSBXIwb2E2KgISAHIECAMgAFABWhFjcmVhdGVQcm92aW5jaWVJRGIcc3RhZHNhY3Rpdml0ZWl0QWFubWFrZW5Db3B5Mg==',
- name: 'String',
- nullable: true,
- ),
- 'createGemeenteID': debugSerializeParam(
- createGemeenteID,
- ParamType.String,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- searchReference:
- 'reference=QiUKGQoQY3JlYXRlR2VtZWVudGVJRBIFYmFwZW0qAhIAcgQIAyAAUAFaEGNyZWF0ZUdlbWVlbnRlSURiHHN0YWRzYWN0aXZpdGVpdEFhbm1ha2VuQ29weTI=',
- name: 'String',
- nullable: true,
- ),
- 'createPlaatsID': debugSerializeParam(
- createPlaatsID,
- ParamType.String,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- searchReference:
- 'reference=QiMKFwoOY3JlYXRlUGxhYXRzSUQSBWd6bW1uKgISAHIECAMgAFABWg5jcmVhdGVQbGFhdHNJRGIcc3RhZHNhY3Rpdml0ZWl0QWFubWFrZW5Db3B5Mg==',
- name: 'String',
- nullable: true,
- ),
- 'createCategorieTids': debugSerializeParam(
- createCategorieTids,
- ParamType.String,
- isList: true,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- searchReference:
- 'reference=QiYKHAoTY3JlYXRlQ2F0ZWdvcmllVGlkcxIFcjQzeGRyBhICCAMgAVABWhNjcmVhdGVDYXRlZ29yaWVUaWRzYhxzdGFkc2FjdGl2aXRlaXRBYW5tYWtlbkNvcHky',
- name: 'String',
- nullable: false,
- ),
- 'createEntreeTid': debugSerializeParam(
- createEntreeTid,
- ParamType.String,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- searchReference:
- 'reference=QiQKGAoPY3JlYXRlRW50cmVlVGlkEgU2cm90YSoCEgByBAgDIABQAVoPY3JlYXRlRW50cmVlVGlkYhxzdGFkc2FjdGl2aXRlaXRBYW5tYWtlbkNvcHky',
- name: 'String',
- nullable: true,
- ),
- 'createLogoFid': debugSerializeParam(
- createLogoFid,
- ParamType.String,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- searchReference:
- 'reference=QiIKFgoNY3JlYXRlTG9nb0ZpZBIFMXZvanoqAhIAcgQIAyAAUAFaDWNyZWF0ZUxvZ29GaWRiHHN0YWRzYWN0aXZpdGVpdEFhbm1ha2VuQ29weTI=',
- name: 'String',
- nullable: true,
- ),
- 'createFotosFids': debugSerializeParam(
- createFotosFids,
- ParamType.String,
- isList: true,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- searchReference:
- 'reference=QiIKGAoPY3JlYXRlRm90b3NGaWRzEgU5enlvdnIGEgIIAyAAUAFaD2NyZWF0ZUZvdG9zRmlkc2Icc3RhZHNhY3Rpdml0ZWl0QWFubWFrZW5Db3B5Mg==',
- name: 'String',
- nullable: false,
- ),
- 'createLogoUrl': debugSerializeParam(
- createLogoUrl,
- ParamType.String,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- searchReference:
- 'reference=Qh4KFgoNY3JlYXRlTG9nb1VybBIFZGYzMnpyBAgEIABQAVoNY3JlYXRlTG9nb1VybGIcc3RhZHNhY3Rpdml0ZWl0QWFubWFrZW5Db3B5Mg==',
- name: 'String',
- nullable: true,
- ),
- 'createFotosUrls': debugSerializeParam(
- createFotosUrls,
- ParamType.String,
- isList: true,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- searchReference:
- 'reference=QiIKGAoPY3JlYXRlRm90b3NVcmxzEgVjZDhwNXIGEgIIBCABUAFaD2NyZWF0ZUZvdG9zVXJsc2Icc3RhZHNhY3Rpdml0ZWl0QWFubWFrZW5Db3B5Mg==',
- name: 'String',
- nullable: false,
- )
- }.entries,
- widgetStates: {
- 'dropDownCategorieenValue': debugSerializeParam(
- dropDownCategorieenValue,
- ParamType.String,
- isList: true,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- name: 'String',
- nullable: true,
- ),
- 'textFieldTitelText': debugSerializeParam(
- textFieldTitelTextController?.text,
- ParamType.String,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- name: 'String',
- nullable: true,
- ),
- 'textFieldOmschrijvingText': debugSerializeParam(
- textFieldOmschrijvingTextController?.text,
- ParamType.String,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- name: 'String',
- nullable: true,
- ),
- 'textFieldDatumStartText': debugSerializeParam(
- textFieldDatumStartTextController?.text,
- ParamType.String,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- name: 'String',
- nullable: true,
- ),
- 'textFieldDatumEindText': debugSerializeParam(
- textFieldDatumEindTextController?.text,
- ParamType.String,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- name: 'String',
- nullable: true,
- ),
- 'textFieldOrganisatorText': debugSerializeParam(
- textFieldOrganisatorTextController?.text,
- ParamType.String,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- name: 'String',
- nullable: true,
- ),
- 'dropDownGemeentenMijngemeentenValue': debugSerializeParam(
- dropDownGemeentenMijngemeentenValue,
- ParamType.String,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- name: 'String',
- nullable: true,
- ),
- 'dropDownProvincieValue': debugSerializeParam(
- dropDownProvincieValue,
- ParamType.String,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- name: 'String',
- nullable: true,
- ),
- 'dropDownGemeenteValue': debugSerializeParam(
- dropDownGemeenteValue,
- ParamType.String,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- name: 'String',
- nullable: true,
- ),
- 'dropDownPlaatsValue': debugSerializeParam(
- dropDownPlaatsValue,
- ParamType.String,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- name: 'String',
- nullable: true,
- ),
- 'textFieldContactText': debugSerializeParam(
- textFieldContactTextController?.text,
- ParamType.String,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- name: 'String',
- nullable: true,
- ),
- 'textFieldAdresText': debugSerializeParam(
- textFieldAdresTextController?.text,
- ParamType.String,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- name: 'String',
- nullable: true,
- ),
- 'textFieldPostcodeText': debugSerializeParam(
- textFieldPostcodeTextController?.text,
- ParamType.String,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- name: 'String',
- nullable: true,
- ),
- 'textFieldPlaatsText': debugSerializeParam(
- textFieldPlaatsTextController?.text,
- ParamType.String,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- name: 'String',
- nullable: true,
- ),
- 'textFieldWebsiteURLText': debugSerializeParam(
- textFieldWebsiteURLTextController?.text,
- ParamType.String,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- name: 'String',
- nullable: true,
- ),
- 'dropDownEntreeValue': debugSerializeParam(
- dropDownEntreeValue,
- ParamType.String,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- name: 'String',
- nullable: true,
- ),
- 'textFieldToelichtingEntreeText': debugSerializeParam(
- textFieldToelichtingEntreeTextController?.text,
- ParamType.String,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- name: 'String',
- nullable: true,
- ),
- 'textFieldEntreeprijsText': debugSerializeParam(
- textFieldEntreeprijsTextController?.text,
- ParamType.String,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- name: 'String',
- nullable: true,
- )
- }.entries,
- actionOutputs: {
- 'logouploadResult': debugSerializeParam(
- logouploadResult,
- ParamType.JSON,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- name: 'dynamic',
- nullable: true,
- ),
- 'fotouploadResult': debugSerializeParam(
- fotouploadResult,
- ParamType.JSON,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- name: 'dynamic',
- nullable: true,
- ),
- 'createResult': debugSerializeParam(
- createResult,
- ParamType.JSON,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- name: 'dynamic',
- nullable: true,
- )
- }.entries,
- generatorVariables: debugGeneratorVariables.entries,
- backendQueries: debugBackendQueries.entries,
- componentStates: {
- ...widgetBuilderComponents.map(
- (key, value) => MapEntry(
- key,
- value.toWidgetClassDebugData(),
- ),
- ),
- }.withoutNulls.entries,
- link:
- 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd/tab=uiBuilder&page=stadsactiviteitAanmakenCopy2',
- searchReference:
- 'reference=OhxzdGFkc2FjdGl2aXRlaXRBYW5tYWtlbkNvcHkyUAFaHHN0YWRzYWN0aXZpdGVpdEFhbm1ha2VuQ29weTI=',
- widgetClassName: 'stadsactiviteitAanmakenCopy2',
- );
- }
|