kaart_tabel_uitgaan_comp_model.dart 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. import '/flutter_flow/flutter_flow_theme.dart';
  2. import '/flutter_flow/flutter_flow_util.dart';
  3. import '/flutter_flow/flutter_flow_widgets.dart';
  4. import '/shared/tag_categorie_component/tag_categorie_component_widget.dart';
  5. import 'dart:ui';
  6. import '/custom_code/widgets/index.dart' as custom_widgets;
  7. import 'kaart_tabel_uitgaan_comp_widget.dart' show KaartTabelUitgaanCompWidget;
  8. import 'package:auto_size_text/auto_size_text.dart';
  9. import 'package:flutter/material.dart';
  10. import 'package:flutter_spinkit/flutter_spinkit.dart';
  11. import 'package:google_fonts/google_fonts.dart';
  12. import 'package:provider/provider.dart';
  13. class KaartTabelUitgaanCompModel
  14. extends FlutterFlowModel<KaartTabelUitgaanCompWidget> {
  15. /// State fields for stateful widgets in this component.
  16. // Models for tagCategorieComponent dynamic component.
  17. Map<String, FlutterFlowModel> tagCategorieComponentModels = {};
  18. final Map<String, DebugDataField> debugGeneratorVariables = {};
  19. final Map<String, DebugDataField> debugBackendQueries = {};
  20. final Map<String, FlutterFlowModel> widgetBuilderComponents = {};
  21. @override
  22. void initState(BuildContext context) {}
  23. @override
  24. void dispose() {}
  25. @override
  26. WidgetClassDebugData toWidgetClassDebugData() => WidgetClassDebugData(
  27. widgetParameters: {
  28. 'logo': debugSerializeParam(
  29. widget?.logo,
  30. ParamType.String,
  31. link:
  32. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=kaartTabelUitgaanComp',
  33. searchReference:
  34. 'reference=ShQKDgoEbG9nbxIGOTY2ZzA0cgIIBFAAWgRsb2dv',
  35. name: 'String',
  36. nullable: true,
  37. ),
  38. 'categorie': debugSerializeParam(
  39. widget?.categorie,
  40. ParamType.String,
  41. isList: true,
  42. link:
  43. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=kaartTabelUitgaanComp',
  44. searchReference:
  45. 'reference=ShsKEwoJY2F0ZWdvcmllEgY0bmhyazdyBBICCANQAFoJY2F0ZWdvcmll',
  46. name: 'String',
  47. nullable: true,
  48. ),
  49. 'titel': debugSerializeParam(
  50. widget?.titel,
  51. ParamType.String,
  52. link:
  53. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=kaartTabelUitgaanComp',
  54. searchReference:
  55. 'reference=ShUKDwoFdGl0ZWwSBnJzZDN5anICCANQAFoFdGl0ZWw=',
  56. name: 'String',
  57. nullable: true,
  58. ),
  59. 'datum': debugSerializeParam(
  60. widget?.datum,
  61. ParamType.String,
  62. link:
  63. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=kaartTabelUitgaanComp',
  64. searchReference:
  65. 'reference=ShUKDwoFZGF0dW0SBnJqdWduZnICCANQAFoFZGF0dW0=',
  66. name: 'String',
  67. nullable: true,
  68. ),
  69. 'horecagelegenheid': debugSerializeParam(
  70. widget?.horecagelegenheid,
  71. ParamType.String,
  72. link:
  73. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=kaartTabelUitgaanComp',
  74. searchReference:
  75. 'reference=SiEKGwoRaG9yZWNhZ2VsZWdlbmhlaWQSBmh4ZXh2dXICCANQAFoRaG9yZWNhZ2VsZWdlbmhlaWQ=',
  76. name: 'String',
  77. nullable: true,
  78. ),
  79. 'adres': debugSerializeParam(
  80. widget?.adres,
  81. ParamType.String,
  82. link:
  83. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=kaartTabelUitgaanComp',
  84. searchReference:
  85. 'reference=ShUKDwoFYWRyZXMSBmFlOG9ueXICCANQAFoFYWRyZXM=',
  86. name: 'String',
  87. nullable: true,
  88. ),
  89. 'plaats': debugSerializeParam(
  90. widget?.plaats,
  91. ParamType.String,
  92. link:
  93. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=kaartTabelUitgaanComp',
  94. searchReference:
  95. 'reference=ShYKEAoGcGxhYXRzEgY3ZW85emRyAggDUABaBnBsYWF0cw==',
  96. name: 'String',
  97. nullable: true,
  98. ),
  99. 'inhoud': debugSerializeParam(
  100. widget?.inhoud,
  101. ParamType.String,
  102. link:
  103. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=kaartTabelUitgaanComp',
  104. searchReference:
  105. 'reference=ShYKEAoGaW5ob3VkEgZrYTNjMTRyAggDUABaBmluaG91ZA==',
  106. name: 'String',
  107. nullable: true,
  108. )
  109. }.withoutNulls.entries,
  110. generatorVariables: debugGeneratorVariables.entries,
  111. backendQueries: debugBackendQueries.entries,
  112. componentStates: {
  113. ...widgetBuilderComponents.map(
  114. (key, value) => MapEntry(
  115. key,
  116. value.toWidgetClassDebugData(),
  117. ),
  118. ),
  119. }.withoutNulls.entries,
  120. dynamicComponentStates: {
  121. 'tagCategorieComponentModels (List<tagCategorieComponent>)':
  122. DynamicWidgetClassDebugData(
  123. componentStates: Map.fromIterables(
  124. List.generate(
  125. tagCategorieComponentModels.length, (index) => '[$index]'),
  126. tagCategorieComponentModels.values
  127. .map((e) => e.toWidgetClassDebugData()),
  128. ).entries,
  129. ),
  130. }.withoutNulls.entries,
  131. link:
  132. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd/tab=uiBuilder&page=kaartTabelUitgaanComp',
  133. searchReference:
  134. 'reference=OhVrYWFydFRhYmVsVWl0Z2FhbkNvbXBQAFoVa2FhcnRUYWJlbFVpdGdhYW5Db21w',
  135. widgetClassName: 'kaartTabelUitgaanComp',
  136. );
  137. }