evenement_horecagelegenheid_widget.dart 83 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582
  1. import '/backend/api_requests/api_calls.dart';
  2. import '/flutter_flow/flutter_flow_theme.dart';
  3. import '/flutter_flow/flutter_flow_util.dart';
  4. import '/flutter_flow/flutter_flow_widgets.dart';
  5. import 'dart:ui';
  6. import '/index.dart';
  7. import 'package:carousel_slider/carousel_slider.dart';
  8. import 'package:cached_network_image/cached_network_image.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. import 'evenement_horecagelegenheid_model.dart';
  14. export 'evenement_horecagelegenheid_model.dart';
  15. class EvenementHorecagelegenheidWidget extends StatefulWidget {
  16. const EvenementHorecagelegenheidWidget({
  17. super.key,
  18. required this.establishmentID,
  19. });
  20. final String? establishmentID;
  21. @override
  22. State<EvenementHorecagelegenheidWidget> createState() =>
  23. _EvenementHorecagelegenheidWidgetState();
  24. }
  25. class _EvenementHorecagelegenheidWidgetState
  26. extends State<EvenementHorecagelegenheidWidget>
  27. with TickerProviderStateMixin, RouteAware {
  28. late EvenementHorecagelegenheidModel _model;
  29. @override
  30. void setState(VoidCallback callback) {
  31. super.setState(callback);
  32. _model.onUpdate();
  33. }
  34. @override
  35. void initState() {
  36. super.initState();
  37. _model = createModel(context, () => EvenementHorecagelegenheidModel());
  38. _model.tabBarController = TabController(
  39. vsync: this,
  40. length: 3,
  41. initialIndex: 0,
  42. )
  43. ..addListener(() => safeSetState(() {}))
  44. ..addListener(() {
  45. debugLogWidgetClass(_model);
  46. });
  47. }
  48. @override
  49. void dispose() {
  50. routeObserver.unsubscribe(this);
  51. _model.maybeDispose();
  52. super.dispose();
  53. }
  54. @override
  55. void didUpdateWidget(EvenementHorecagelegenheidWidget oldWidget) {
  56. super.didUpdateWidget(oldWidget);
  57. _model.widget = widget;
  58. }
  59. @override
  60. void didChangeDependencies() {
  61. super.didChangeDependencies();
  62. final route = DebugModalRoute.of(context);
  63. if (route != null) {
  64. routeObserver.subscribe(this, route);
  65. }
  66. debugLogGlobalProperty(context);
  67. }
  68. @override
  69. void didPopNext() {
  70. if (mounted && DebugFlutterFlowModelContext.maybeOf(context) == null) {
  71. setState(() => _model.isRouteVisible = true);
  72. debugLogWidgetClass(_model);
  73. }
  74. }
  75. @override
  76. void didPush() {
  77. if (mounted && DebugFlutterFlowModelContext.maybeOf(context) == null) {
  78. setState(() => _model.isRouteVisible = true);
  79. debugLogWidgetClass(_model);
  80. }
  81. }
  82. @override
  83. void didPop() {
  84. _model.isRouteVisible = false;
  85. }
  86. @override
  87. void didPushNext() {
  88. _model.isRouteVisible = false;
  89. }
  90. @override
  91. Widget build(BuildContext context) {
  92. DebugFlutterFlowModelContext.maybeOf(context)
  93. ?.parentModelCallback
  94. ?.call(_model);
  95. return FutureBuilder<ApiCallResponse>(
  96. future: EstablishmentInfoCall.call(
  97. nid: widget!.establishmentID,
  98. ),
  99. builder: (context, snapshot) {
  100. // Customize what your widget looks like when it's loading.
  101. if (!snapshot.hasData) {
  102. return Center(
  103. child: SizedBox(
  104. width: 80.0,
  105. height: 80.0,
  106. child: SpinKitFadingCircle(
  107. color: Color(0xFFB1061E),
  108. size: 80.0,
  109. ),
  110. ),
  111. );
  112. }
  113. final columnEstablishmentInfoResponse = snapshot.data!;
  114. _model.debugBackendQueries[
  115. 'EstablishmentInfoCall_statusCode_Column_g5wjludw'] =
  116. debugSerializeParam(
  117. columnEstablishmentInfoResponse.statusCode,
  118. ParamType.int,
  119. link:
  120. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=EvenementHorecagelegenheid',
  121. name: 'int',
  122. nullable: false,
  123. );
  124. _model.debugBackendQueries[
  125. 'EstablishmentInfoCall_responseBody_Column_g5wjludw'] =
  126. debugSerializeParam(
  127. columnEstablishmentInfoResponse.bodyText,
  128. ParamType.String,
  129. link:
  130. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=EvenementHorecagelegenheid',
  131. name: 'String',
  132. nullable: false,
  133. );
  134. debugLogWidgetClass(_model);
  135. return Column(
  136. mainAxisSize: MainAxisSize.max,
  137. children: [
  138. InkWell(
  139. splashColor: Colors.transparent,
  140. focusColor: Colors.transparent,
  141. hoverColor: Colors.transparent,
  142. highlightColor: Colors.transparent,
  143. onTap: () async {
  144. context.pushNamed(
  145. HorecagelegenheidCurrentWidget.routeName,
  146. queryParameters: {
  147. 'nid': serializeParam(
  148. widget!.establishmentID,
  149. ParamType.String,
  150. ),
  151. }.withoutNulls,
  152. );
  153. },
  154. child: Text(
  155. valueOrDefault<String>(
  156. EstablishmentInfoCall.establshmentTitel(
  157. columnEstablishmentInfoResponse.jsonBody,
  158. ),
  159. 'HorecaNaam',
  160. ),
  161. style: FlutterFlowTheme.of(context).headlineLarge.override(
  162. font: GoogleFonts.interTight(
  163. fontWeight: FlutterFlowTheme.of(context)
  164. .headlineLarge
  165. .fontWeight,
  166. fontStyle: FlutterFlowTheme.of(context)
  167. .headlineLarge
  168. .fontStyle,
  169. ),
  170. letterSpacing: 0.0,
  171. fontWeight:
  172. FlutterFlowTheme.of(context).headlineLarge.fontWeight,
  173. fontStyle:
  174. FlutterFlowTheme.of(context).headlineLarge.fontStyle,
  175. ),
  176. ),
  177. ),
  178. Padding(
  179. padding: EdgeInsetsDirectional.fromSTEB(0.0, 0.0, 0.0, 8.0),
  180. child: Builder(
  181. builder: (context) {
  182. final categoriehoreca =
  183. EstablishmentInfoCall.establishmentCategorie(
  184. columnEstablishmentInfoResponse.jsonBody,
  185. )?.toList() ??
  186. [];
  187. _model.debugGeneratorVariables[
  188. 'categoriehoreca${categoriehoreca.length > 100 ? ' (first 100)' : ''}'] =
  189. debugSerializeParam(
  190. categoriehoreca.take(100),
  191. ParamType.String,
  192. isList: true,
  193. link:
  194. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=EvenementHorecagelegenheid',
  195. name: 'String',
  196. nullable: false,
  197. );
  198. debugLogWidgetClass(_model);
  199. return Row(
  200. mainAxisSize: MainAxisSize.max,
  201. children: List.generate(categoriehoreca.length,
  202. (categoriehorecaIndex) {
  203. final categoriehorecaItem =
  204. categoriehoreca[categoriehorecaIndex];
  205. return Container(
  206. decoration: BoxDecoration(
  207. color: Color(0xFFC84E4E),
  208. boxShadow: [
  209. BoxShadow(
  210. blurRadius: 4.0,
  211. color: Color(0x33000000),
  212. offset: Offset(
  213. 0.0,
  214. 2.0,
  215. ),
  216. )
  217. ],
  218. ),
  219. child: Padding(
  220. padding: EdgeInsetsDirectional.fromSTEB(
  221. 2.0, 0.0, 2.0, 0.0),
  222. child: Text(
  223. categoriehorecaItem,
  224. style: FlutterFlowTheme.of(context)
  225. .bodyMedium
  226. .override(
  227. font: GoogleFonts.inter(
  228. fontWeight: FlutterFlowTheme.of(context)
  229. .bodyMedium
  230. .fontWeight,
  231. fontStyle: FlutterFlowTheme.of(context)
  232. .bodyMedium
  233. .fontStyle,
  234. ),
  235. letterSpacing: 0.0,
  236. fontWeight: FlutterFlowTheme.of(context)
  237. .bodyMedium
  238. .fontWeight,
  239. fontStyle: FlutterFlowTheme.of(context)
  240. .bodyMedium
  241. .fontStyle,
  242. ),
  243. ),
  244. ),
  245. );
  246. }),
  247. );
  248. },
  249. ),
  250. ),
  251. Builder(
  252. builder: (context) {
  253. final fotoos = EstablishmentInfoCall.establishmentFotoos(
  254. columnEstablishmentInfoResponse.jsonBody,
  255. )?.toList() ??
  256. [];
  257. _model.debugGeneratorVariables[
  258. 'fotoos${fotoos.length > 100 ? ' (first 100)' : ''}'] =
  259. debugSerializeParam(
  260. fotoos.take(100),
  261. ParamType.String,
  262. isList: true,
  263. link:
  264. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=EvenementHorecagelegenheid',
  265. name: 'String',
  266. nullable: false,
  267. );
  268. debugLogWidgetClass(_model);
  269. return Container(
  270. width: double.infinity,
  271. height: 200.0,
  272. child: CarouselSlider.builder(
  273. itemCount: fotoos.length,
  274. itemBuilder: (context, fotoosIndex, _) {
  275. final fotoosItem = fotoos[fotoosIndex];
  276. return ClipRRect(
  277. borderRadius: BorderRadius.circular(8.0),
  278. child: CachedNetworkImage(
  279. fadeInDuration: Duration(milliseconds: 500),
  280. fadeOutDuration: Duration(milliseconds: 500),
  281. imageUrl: fotoosItem,
  282. width: 200.0,
  283. height: 200.0,
  284. fit: BoxFit.cover,
  285. ),
  286. );
  287. },
  288. carouselController: _model.carouselController ??=
  289. CarouselSliderController(),
  290. options: CarouselOptions(
  291. initialPage: max(0, min(1, fotoos.length - 1)),
  292. viewportFraction: 0.5,
  293. disableCenter: true,
  294. enlargeCenterPage: true,
  295. enlargeFactor: 0.25,
  296. enableInfiniteScroll: true,
  297. scrollDirection: Axis.horizontal,
  298. autoPlay: false,
  299. onPageChanged: (index, _) =>
  300. _model.carouselCurrentIndex = index,
  301. ),
  302. ),
  303. );
  304. },
  305. ),
  306. Expanded(
  307. child: Column(
  308. children: [
  309. Align(
  310. alignment: Alignment(0.0, 0),
  311. child: TabBar(
  312. labelColor: FlutterFlowTheme.of(context).primaryText,
  313. unselectedLabelColor:
  314. FlutterFlowTheme.of(context).secondaryText,
  315. labelStyle:
  316. FlutterFlowTheme.of(context).titleMedium.override(
  317. font: GoogleFonts.interTight(
  318. fontWeight: FlutterFlowTheme.of(context)
  319. .titleMedium
  320. .fontWeight,
  321. fontStyle: FlutterFlowTheme.of(context)
  322. .titleMedium
  323. .fontStyle,
  324. ),
  325. letterSpacing: 0.0,
  326. fontWeight: FlutterFlowTheme.of(context)
  327. .titleMedium
  328. .fontWeight,
  329. fontStyle: FlutterFlowTheme.of(context)
  330. .titleMedium
  331. .fontStyle,
  332. ),
  333. unselectedLabelStyle:
  334. FlutterFlowTheme.of(context).titleMedium.override(
  335. font: GoogleFonts.interTight(
  336. fontWeight: FlutterFlowTheme.of(context)
  337. .titleMedium
  338. .fontWeight,
  339. fontStyle: FlutterFlowTheme.of(context)
  340. .titleMedium
  341. .fontStyle,
  342. ),
  343. letterSpacing: 0.0,
  344. fontWeight: FlutterFlowTheme.of(context)
  345. .titleMedium
  346. .fontWeight,
  347. fontStyle: FlutterFlowTheme.of(context)
  348. .titleMedium
  349. .fontStyle,
  350. ),
  351. indicatorColor: FlutterFlowTheme.of(context).primary,
  352. tabs: [
  353. Tab(
  354. text: FFLocalizations.of(context).getText(
  355. 'ubuux42u' /* Info */,
  356. ),
  357. ),
  358. Tab(
  359. text: FFLocalizations.of(context).getText(
  360. 'mlojriz0' /* Openingstijden */,
  361. ),
  362. ),
  363. Tab(
  364. text: FFLocalizations.of(context).getText(
  365. '5tdut8bf' /* Bezorgen */,
  366. ),
  367. ),
  368. ],
  369. controller: _model.tabBarController,
  370. onTap: (i) async {
  371. [() async {}, () async {}, () async {}][i]();
  372. },
  373. ),
  374. ),
  375. Expanded(
  376. child: TabBarView(
  377. controller: _model.tabBarController,
  378. children: [
  379. Column(
  380. mainAxisSize: MainAxisSize.max,
  381. children: [
  382. Text(
  383. valueOrDefault<String>(
  384. widget!.establishmentID,
  385. 'establishmentnid',
  386. ),
  387. style: FlutterFlowTheme.of(context)
  388. .bodyMedium
  389. .override(
  390. font: GoogleFonts.inter(
  391. fontWeight: FlutterFlowTheme.of(context)
  392. .bodyMedium
  393. .fontWeight,
  394. fontStyle: FlutterFlowTheme.of(context)
  395. .bodyMedium
  396. .fontStyle,
  397. ),
  398. letterSpacing: 0.0,
  399. fontWeight: FlutterFlowTheme.of(context)
  400. .bodyMedium
  401. .fontWeight,
  402. fontStyle: FlutterFlowTheme.of(context)
  403. .bodyMedium
  404. .fontStyle,
  405. ),
  406. ),
  407. Text(
  408. valueOrDefault<String>(
  409. EstablishmentInfoCall.establishmentEmail(
  410. columnEstablishmentInfoResponse.jsonBody,
  411. ),
  412. 'email',
  413. ),
  414. style: FlutterFlowTheme.of(context)
  415. .bodyMedium
  416. .override(
  417. font: GoogleFonts.inter(
  418. fontWeight: FlutterFlowTheme.of(context)
  419. .bodyMedium
  420. .fontWeight,
  421. fontStyle: FlutterFlowTheme.of(context)
  422. .bodyMedium
  423. .fontStyle,
  424. ),
  425. letterSpacing: 0.0,
  426. fontWeight: FlutterFlowTheme.of(context)
  427. .bodyMedium
  428. .fontWeight,
  429. fontStyle: FlutterFlowTheme.of(context)
  430. .bodyMedium
  431. .fontStyle,
  432. ),
  433. ),
  434. ClipRRect(
  435. borderRadius: BorderRadius.circular(8.0),
  436. child: CachedNetworkImage(
  437. fadeInDuration: Duration(milliseconds: 500),
  438. fadeOutDuration: Duration(milliseconds: 500),
  439. imageUrl: valueOrDefault<String>(
  440. EstablishmentInfoCall.establshmentLogo(
  441. columnEstablishmentInfoResponse.jsonBody,
  442. ),
  443. 'Logo',
  444. ),
  445. width: MediaQuery.sizeOf(context).width * 0.15,
  446. height: 200.0,
  447. fit: BoxFit.cover,
  448. ),
  449. ),
  450. Row(
  451. mainAxisSize: MainAxisSize.max,
  452. children: [
  453. Icon(
  454. Icons.house,
  455. color:
  456. FlutterFlowTheme.of(context).primaryText,
  457. size: 24.0,
  458. ),
  459. Text(
  460. valueOrDefault<String>(
  461. EstablishmentInfoCall.establishmentPlaats(
  462. columnEstablishmentInfoResponse.jsonBody,
  463. ),
  464. 'Plaats',
  465. ),
  466. style: FlutterFlowTheme.of(context)
  467. .bodyMedium
  468. .override(
  469. font: GoogleFonts.inter(
  470. fontWeight:
  471. FlutterFlowTheme.of(context)
  472. .bodyMedium
  473. .fontWeight,
  474. fontStyle:
  475. FlutterFlowTheme.of(context)
  476. .bodyMedium
  477. .fontStyle,
  478. ),
  479. letterSpacing: 0.0,
  480. fontWeight: FlutterFlowTheme.of(context)
  481. .bodyMedium
  482. .fontWeight,
  483. fontStyle: FlutterFlowTheme.of(context)
  484. .bodyMedium
  485. .fontStyle,
  486. ),
  487. ),
  488. Text(
  489. valueOrDefault<String>(
  490. EstablishmentInfoCall.establishmentAdres(
  491. columnEstablishmentInfoResponse.jsonBody,
  492. ),
  493. 'Adres',
  494. ),
  495. style: FlutterFlowTheme.of(context)
  496. .bodyMedium
  497. .override(
  498. font: GoogleFonts.inter(
  499. fontWeight:
  500. FlutterFlowTheme.of(context)
  501. .bodyMedium
  502. .fontWeight,
  503. fontStyle:
  504. FlutterFlowTheme.of(context)
  505. .bodyMedium
  506. .fontStyle,
  507. ),
  508. letterSpacing: 0.0,
  509. fontWeight: FlutterFlowTheme.of(context)
  510. .bodyMedium
  511. .fontWeight,
  512. fontStyle: FlutterFlowTheme.of(context)
  513. .bodyMedium
  514. .fontStyle,
  515. ),
  516. ),
  517. ],
  518. ),
  519. Row(
  520. mainAxisSize: MainAxisSize.max,
  521. children: [
  522. Icon(
  523. Icons.phone_sharp,
  524. color:
  525. FlutterFlowTheme.of(context).primaryText,
  526. size: 24.0,
  527. ),
  528. if (valueOrDefault<String>(
  529. EstablishmentInfoCall
  530. .establishmentTelefoonnummer(
  531. columnEstablishmentInfoResponse
  532. .jsonBody,
  533. ),
  534. 'Telefoon',
  535. ) !=
  536. null &&
  537. valueOrDefault<String>(
  538. EstablishmentInfoCall
  539. .establishmentTelefoonnummer(
  540. columnEstablishmentInfoResponse
  541. .jsonBody,
  542. ),
  543. 'Telefoon',
  544. ) !=
  545. '')
  546. Text(
  547. valueOrDefault<String>(
  548. EstablishmentInfoCall
  549. .establishmentTelefoonnummer(
  550. columnEstablishmentInfoResponse
  551. .jsonBody,
  552. ),
  553. 'Telefoon',
  554. ),
  555. style: FlutterFlowTheme.of(context)
  556. .bodyMedium
  557. .override(
  558. font: GoogleFonts.inter(
  559. fontWeight:
  560. FlutterFlowTheme.of(context)
  561. .bodyMedium
  562. .fontWeight,
  563. fontStyle:
  564. FlutterFlowTheme.of(context)
  565. .bodyMedium
  566. .fontStyle,
  567. ),
  568. letterSpacing: 0.0,
  569. fontWeight:
  570. FlutterFlowTheme.of(context)
  571. .bodyMedium
  572. .fontWeight,
  573. fontStyle:
  574. FlutterFlowTheme.of(context)
  575. .bodyMedium
  576. .fontStyle,
  577. ),
  578. ),
  579. ],
  580. ),
  581. InkWell(
  582. splashColor: Colors.transparent,
  583. focusColor: Colors.transparent,
  584. hoverColor: Colors.transparent,
  585. highlightColor: Colors.transparent,
  586. onTap: () async {
  587. await launchURL(EstablishmentInfoCall
  588. .establishmentMenukaart(
  589. columnEstablishmentInfoResponse.jsonBody,
  590. )!);
  591. },
  592. child: Text(
  593. valueOrDefault<String>(
  594. EstablishmentInfoCall.establishmentMenukaart(
  595. columnEstablishmentInfoResponse.jsonBody,
  596. ),
  597. 'menukaart',
  598. ),
  599. style: FlutterFlowTheme.of(context)
  600. .bodyMedium
  601. .override(
  602. font: GoogleFonts.inter(
  603. fontWeight: FlutterFlowTheme.of(context)
  604. .bodyMedium
  605. .fontWeight,
  606. fontStyle: FlutterFlowTheme.of(context)
  607. .bodyMedium
  608. .fontStyle,
  609. ),
  610. letterSpacing: 0.0,
  611. fontWeight: FlutterFlowTheme.of(context)
  612. .bodyMedium
  613. .fontWeight,
  614. fontStyle: FlutterFlowTheme.of(context)
  615. .bodyMedium
  616. .fontStyle,
  617. ),
  618. ),
  619. ),
  620. Container(
  621. decoration: BoxDecoration(
  622. color: Color(0xFFC8B1B1),
  623. ),
  624. child: Row(
  625. mainAxisSize: MainAxisSize.max,
  626. children: [
  627. Text(
  628. FFLocalizations.of(context).getText(
  629. 'lo8ciqtb' /* Entree */,
  630. ),
  631. style: FlutterFlowTheme.of(context)
  632. .bodyMedium
  633. .override(
  634. font: GoogleFonts.inter(
  635. fontWeight:
  636. FlutterFlowTheme.of(context)
  637. .bodyMedium
  638. .fontWeight,
  639. fontStyle:
  640. FlutterFlowTheme.of(context)
  641. .bodyMedium
  642. .fontStyle,
  643. ),
  644. letterSpacing: 0.0,
  645. fontWeight:
  646. FlutterFlowTheme.of(context)
  647. .bodyMedium
  648. .fontWeight,
  649. fontStyle:
  650. FlutterFlowTheme.of(context)
  651. .bodyMedium
  652. .fontStyle,
  653. ),
  654. ),
  655. Column(
  656. mainAxisSize: MainAxisSize.max,
  657. children: [
  658. Text(
  659. valueOrDefault<String>(
  660. EstablishmentInfoCall
  661. .establishmentEntreeprijs(
  662. columnEstablishmentInfoResponse
  663. .jsonBody,
  664. ),
  665. 'entreeprijs',
  666. ),
  667. style: FlutterFlowTheme.of(context)
  668. .bodyMedium
  669. .override(
  670. font: GoogleFonts.inter(
  671. fontWeight:
  672. FlutterFlowTheme.of(context)
  673. .bodyMedium
  674. .fontWeight,
  675. fontStyle:
  676. FlutterFlowTheme.of(context)
  677. .bodyMedium
  678. .fontStyle,
  679. ),
  680. letterSpacing: 0.0,
  681. fontWeight:
  682. FlutterFlowTheme.of(context)
  683. .bodyMedium
  684. .fontWeight,
  685. fontStyle:
  686. FlutterFlowTheme.of(context)
  687. .bodyMedium
  688. .fontStyle,
  689. ),
  690. ),
  691. Text(
  692. valueOrDefault<String>(
  693. EstablishmentInfoCall
  694. .establishmentEntreeToelichting(
  695. columnEstablishmentInfoResponse
  696. .jsonBody,
  697. ),
  698. 'EntreeToelichting',
  699. ),
  700. style: FlutterFlowTheme.of(context)
  701. .bodyMedium
  702. .override(
  703. font: GoogleFonts.inter(
  704. fontWeight:
  705. FlutterFlowTheme.of(context)
  706. .bodyMedium
  707. .fontWeight,
  708. fontStyle:
  709. FlutterFlowTheme.of(context)
  710. .bodyMedium
  711. .fontStyle,
  712. ),
  713. letterSpacing: 0.0,
  714. fontWeight:
  715. FlutterFlowTheme.of(context)
  716. .bodyMedium
  717. .fontWeight,
  718. fontStyle:
  719. FlutterFlowTheme.of(context)
  720. .bodyMedium
  721. .fontStyle,
  722. ),
  723. ),
  724. ],
  725. ),
  726. ],
  727. ),
  728. ),
  729. Container(
  730. decoration: BoxDecoration(
  731. color: Color(0xFFC28080),
  732. ),
  733. child: Row(
  734. mainAxisSize: MainAxisSize.max,
  735. children: [
  736. Text(
  737. FFLocalizations.of(context).getText(
  738. 'au8x5mei' /* Contact */,
  739. ),
  740. style: FlutterFlowTheme.of(context)
  741. .bodyMedium
  742. .override(
  743. font: GoogleFonts.inter(
  744. fontWeight:
  745. FlutterFlowTheme.of(context)
  746. .bodyMedium
  747. .fontWeight,
  748. fontStyle:
  749. FlutterFlowTheme.of(context)
  750. .bodyMedium
  751. .fontStyle,
  752. ),
  753. letterSpacing: 0.0,
  754. fontWeight:
  755. FlutterFlowTheme.of(context)
  756. .bodyMedium
  757. .fontWeight,
  758. fontStyle:
  759. FlutterFlowTheme.of(context)
  760. .bodyMedium
  761. .fontStyle,
  762. ),
  763. ),
  764. Column(
  765. mainAxisSize: MainAxisSize.max,
  766. children: [
  767. if (valueOrDefault<String>(
  768. EstablishmentInfoCall
  769. .establishmentFacebook(
  770. columnEstablishmentInfoResponse
  771. .jsonBody,
  772. ),
  773. 'facebook',
  774. ) !=
  775. null &&
  776. valueOrDefault<String>(
  777. EstablishmentInfoCall
  778. .establishmentFacebook(
  779. columnEstablishmentInfoResponse
  780. .jsonBody,
  781. ),
  782. 'facebook',
  783. ) !=
  784. '')
  785. InkWell(
  786. splashColor: Colors.transparent,
  787. focusColor: Colors.transparent,
  788. hoverColor: Colors.transparent,
  789. highlightColor: Colors.transparent,
  790. onTap: () async {
  791. await launchURL(
  792. valueOrDefault<String>(
  793. EstablishmentInfoCall
  794. .establishmentFacebook(
  795. columnEstablishmentInfoResponse
  796. .jsonBody,
  797. ),
  798. 'facebook',
  799. ));
  800. },
  801. child: Text(
  802. FFLocalizations.of(context).getText(
  803. '8tvvqu63' /* Facebook */,
  804. ),
  805. style: FlutterFlowTheme.of(context)
  806. .bodyMedium
  807. .override(
  808. font: GoogleFonts.inter(
  809. fontWeight:
  810. FlutterFlowTheme.of(
  811. context)
  812. .bodyMedium
  813. .fontWeight,
  814. fontStyle:
  815. FlutterFlowTheme.of(
  816. context)
  817. .bodyMedium
  818. .fontStyle,
  819. ),
  820. letterSpacing: 0.0,
  821. fontWeight:
  822. FlutterFlowTheme.of(
  823. context)
  824. .bodyMedium
  825. .fontWeight,
  826. fontStyle:
  827. FlutterFlowTheme.of(
  828. context)
  829. .bodyMedium
  830. .fontStyle,
  831. ),
  832. ),
  833. ),
  834. if (valueOrDefault<String>(
  835. EstablishmentInfoCall
  836. .establishmentInstagram(
  837. columnEstablishmentInfoResponse
  838. .jsonBody,
  839. ),
  840. 'instagram',
  841. ) !=
  842. null &&
  843. valueOrDefault<String>(
  844. EstablishmentInfoCall
  845. .establishmentInstagram(
  846. columnEstablishmentInfoResponse
  847. .jsonBody,
  848. ),
  849. 'instagram',
  850. ) !=
  851. '')
  852. InkWell(
  853. splashColor: Colors.transparent,
  854. focusColor: Colors.transparent,
  855. hoverColor: Colors.transparent,
  856. highlightColor: Colors.transparent,
  857. onTap: () async {
  858. await launchURL(
  859. valueOrDefault<String>(
  860. EstablishmentInfoCall
  861. .establishmentInstagram(
  862. columnEstablishmentInfoResponse
  863. .jsonBody,
  864. ),
  865. 'instagram',
  866. ));
  867. },
  868. child: Text(
  869. FFLocalizations.of(context).getText(
  870. 'kp1lfaac' /* Instagram */,
  871. ),
  872. style: FlutterFlowTheme.of(context)
  873. .bodyMedium
  874. .override(
  875. font: GoogleFonts.inter(
  876. fontWeight:
  877. FlutterFlowTheme.of(
  878. context)
  879. .bodyMedium
  880. .fontWeight,
  881. fontStyle:
  882. FlutterFlowTheme.of(
  883. context)
  884. .bodyMedium
  885. .fontStyle,
  886. ),
  887. letterSpacing: 0.0,
  888. fontWeight:
  889. FlutterFlowTheme.of(
  890. context)
  891. .bodyMedium
  892. .fontWeight,
  893. fontStyle:
  894. FlutterFlowTheme.of(
  895. context)
  896. .bodyMedium
  897. .fontStyle,
  898. ),
  899. ),
  900. ),
  901. if (valueOrDefault<String>(
  902. EstablishmentInfoCall
  903. .establishmentTwitter(
  904. columnEstablishmentInfoResponse
  905. .jsonBody,
  906. ),
  907. 'twitter',
  908. ) !=
  909. null &&
  910. valueOrDefault<String>(
  911. EstablishmentInfoCall
  912. .establishmentTwitter(
  913. columnEstablishmentInfoResponse
  914. .jsonBody,
  915. ),
  916. 'twitter',
  917. ) !=
  918. '')
  919. InkWell(
  920. splashColor: Colors.transparent,
  921. focusColor: Colors.transparent,
  922. hoverColor: Colors.transparent,
  923. highlightColor: Colors.transparent,
  924. onTap: () async {
  925. await launchURL(
  926. EstablishmentInfoCall
  927. .establishmentTwitter(
  928. columnEstablishmentInfoResponse
  929. .jsonBody,
  930. )!);
  931. },
  932. child: Text(
  933. FFLocalizations.of(context).getText(
  934. 'ktqsytma' /* X/Twitter */,
  935. ),
  936. style: FlutterFlowTheme.of(context)
  937. .bodyMedium
  938. .override(
  939. font: GoogleFonts.inter(
  940. fontWeight:
  941. FlutterFlowTheme.of(
  942. context)
  943. .bodyMedium
  944. .fontWeight,
  945. fontStyle:
  946. FlutterFlowTheme.of(
  947. context)
  948. .bodyMedium
  949. .fontStyle,
  950. ),
  951. letterSpacing: 0.0,
  952. fontWeight:
  953. FlutterFlowTheme.of(
  954. context)
  955. .bodyMedium
  956. .fontWeight,
  957. fontStyle:
  958. FlutterFlowTheme.of(
  959. context)
  960. .bodyMedium
  961. .fontStyle,
  962. ),
  963. ),
  964. ),
  965. if (valueOrDefault<String>(
  966. EstablishmentInfoCall
  967. .establishmentWebsite(
  968. columnEstablishmentInfoResponse
  969. .jsonBody,
  970. ),
  971. 'Website',
  972. ) !=
  973. null &&
  974. valueOrDefault<String>(
  975. EstablishmentInfoCall
  976. .establishmentWebsite(
  977. columnEstablishmentInfoResponse
  978. .jsonBody,
  979. ),
  980. 'Website',
  981. ) !=
  982. '')
  983. InkWell(
  984. splashColor: Colors.transparent,
  985. focusColor: Colors.transparent,
  986. hoverColor: Colors.transparent,
  987. highlightColor: Colors.transparent,
  988. onTap: () async {
  989. await launchURL(
  990. valueOrDefault<String>(
  991. EstablishmentInfoCall
  992. .establishmentWebsite(
  993. columnEstablishmentInfoResponse
  994. .jsonBody,
  995. ),
  996. 'Website',
  997. ));
  998. },
  999. child: Text(
  1000. FFLocalizations.of(context).getText(
  1001. 'vkwayrhq' /* Website */,
  1002. ),
  1003. style: FlutterFlowTheme.of(context)
  1004. .bodyMedium
  1005. .override(
  1006. font: GoogleFonts.inter(
  1007. fontWeight:
  1008. FlutterFlowTheme.of(
  1009. context)
  1010. .bodyMedium
  1011. .fontWeight,
  1012. fontStyle:
  1013. FlutterFlowTheme.of(
  1014. context)
  1015. .bodyMedium
  1016. .fontStyle,
  1017. ),
  1018. letterSpacing: 0.0,
  1019. fontWeight:
  1020. FlutterFlowTheme.of(
  1021. context)
  1022. .bodyMedium
  1023. .fontWeight,
  1024. fontStyle:
  1025. FlutterFlowTheme.of(
  1026. context)
  1027. .bodyMedium
  1028. .fontStyle,
  1029. ),
  1030. ),
  1031. ),
  1032. if (valueOrDefault<String>(
  1033. EstablishmentInfoCall
  1034. .establishmentURL(
  1035. columnEstablishmentInfoResponse
  1036. .jsonBody,
  1037. ),
  1038. 'urluk',
  1039. ) !=
  1040. null &&
  1041. valueOrDefault<String>(
  1042. EstablishmentInfoCall
  1043. .establishmentURL(
  1044. columnEstablishmentInfoResponse
  1045. .jsonBody,
  1046. ),
  1047. 'urluk',
  1048. ) !=
  1049. '')
  1050. InkWell(
  1051. splashColor: Colors.transparent,
  1052. focusColor: Colors.transparent,
  1053. hoverColor: Colors.transparent,
  1054. highlightColor: Colors.transparent,
  1055. onTap: () async {
  1056. await launchURL(
  1057. valueOrDefault<String>(
  1058. EstablishmentInfoCall
  1059. .establishmentURL(
  1060. columnEstablishmentInfoResponse
  1061. .jsonBody,
  1062. ),
  1063. 'urluk',
  1064. ));
  1065. },
  1066. child: Text(
  1067. FFLocalizations.of(context).getText(
  1068. 'cxpo1x6d' /* Website */,
  1069. ),
  1070. style: FlutterFlowTheme.of(context)
  1071. .bodyMedium
  1072. .override(
  1073. font: GoogleFonts.inter(
  1074. fontWeight:
  1075. FlutterFlowTheme.of(
  1076. context)
  1077. .bodyMedium
  1078. .fontWeight,
  1079. fontStyle:
  1080. FlutterFlowTheme.of(
  1081. context)
  1082. .bodyMedium
  1083. .fontStyle,
  1084. ),
  1085. letterSpacing: 0.0,
  1086. fontWeight:
  1087. FlutterFlowTheme.of(
  1088. context)
  1089. .bodyMedium
  1090. .fontWeight,
  1091. fontStyle:
  1092. FlutterFlowTheme.of(
  1093. context)
  1094. .bodyMedium
  1095. .fontStyle,
  1096. ),
  1097. ),
  1098. ),
  1099. ],
  1100. ),
  1101. ],
  1102. ),
  1103. ),
  1104. ],
  1105. ),
  1106. Column(
  1107. mainAxisSize: MainAxisSize.max,
  1108. children: [
  1109. Text(
  1110. FFLocalizations.of(context).getText(
  1111. 'axwdkgtg' /* Hello World */,
  1112. ),
  1113. style: FlutterFlowTheme.of(context)
  1114. .bodyMedium
  1115. .override(
  1116. font: GoogleFonts.inter(
  1117. fontWeight: FlutterFlowTheme.of(context)
  1118. .bodyMedium
  1119. .fontWeight,
  1120. fontStyle: FlutterFlowTheme.of(context)
  1121. .bodyMedium
  1122. .fontStyle,
  1123. ),
  1124. letterSpacing: 0.0,
  1125. fontWeight: FlutterFlowTheme.of(context)
  1126. .bodyMedium
  1127. .fontWeight,
  1128. fontStyle: FlutterFlowTheme.of(context)
  1129. .bodyMedium
  1130. .fontStyle,
  1131. ),
  1132. ),
  1133. if (EstablishmentInfoCall
  1134. .establishmentOpeningstijden(
  1135. columnEstablishmentInfoResponse.jsonBody,
  1136. ) !=
  1137. null &&
  1138. EstablishmentInfoCall
  1139. .establishmentOpeningstijden(
  1140. columnEstablishmentInfoResponse.jsonBody,
  1141. ) !=
  1142. '')
  1143. Text(
  1144. valueOrDefault<String>(
  1145. EstablishmentInfoCall
  1146. .establishmentOpeningstijden(
  1147. columnEstablishmentInfoResponse.jsonBody,
  1148. ),
  1149. 'Openingstijden',
  1150. ),
  1151. style: FlutterFlowTheme.of(context)
  1152. .bodyMedium
  1153. .override(
  1154. font: GoogleFonts.inter(
  1155. fontWeight: FlutterFlowTheme.of(context)
  1156. .bodyMedium
  1157. .fontWeight,
  1158. fontStyle: FlutterFlowTheme.of(context)
  1159. .bodyMedium
  1160. .fontStyle,
  1161. ),
  1162. letterSpacing: 0.0,
  1163. fontWeight: FlutterFlowTheme.of(context)
  1164. .bodyMedium
  1165. .fontWeight,
  1166. fontStyle: FlutterFlowTheme.of(context)
  1167. .bodyMedium
  1168. .fontStyle,
  1169. ),
  1170. ),
  1171. Text(
  1172. valueOrDefault<String>(
  1173. EstablishmentInfoCall
  1174. .establshmentOpeningUitzondering(
  1175. columnEstablishmentInfoResponse.jsonBody,
  1176. ),
  1177. 'OpeningstijdenUitzondering',
  1178. ),
  1179. style: FlutterFlowTheme.of(context)
  1180. .bodyMedium
  1181. .override(
  1182. font: GoogleFonts.inter(
  1183. fontWeight: FlutterFlowTheme.of(context)
  1184. .bodyMedium
  1185. .fontWeight,
  1186. fontStyle: FlutterFlowTheme.of(context)
  1187. .bodyMedium
  1188. .fontStyle,
  1189. ),
  1190. letterSpacing: 0.0,
  1191. fontWeight: FlutterFlowTheme.of(context)
  1192. .bodyMedium
  1193. .fontWeight,
  1194. fontStyle: FlutterFlowTheme.of(context)
  1195. .bodyMedium
  1196. .fontStyle,
  1197. ),
  1198. ),
  1199. ],
  1200. ),
  1201. Column(
  1202. mainAxisSize: MainAxisSize.max,
  1203. children: [
  1204. Builder(
  1205. builder: (context) {
  1206. final cryptocoins = EstablishmentInfoCall
  1207. .establishmentCryptocoins(
  1208. columnEstablishmentInfoResponse.jsonBody,
  1209. )?.toList() ??
  1210. [];
  1211. _model.debugGeneratorVariables[
  1212. 'cryptocoins${cryptocoins.length > 100 ? ' (first 100)' : ''}'] =
  1213. debugSerializeParam(
  1214. cryptocoins.take(100),
  1215. ParamType.String,
  1216. isList: true,
  1217. link:
  1218. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=EvenementHorecagelegenheid',
  1219. name: 'String',
  1220. nullable: false,
  1221. );
  1222. debugLogWidgetClass(_model);
  1223. return Column(
  1224. mainAxisSize: MainAxisSize.max,
  1225. children: List.generate(cryptocoins.length,
  1226. (cryptocoinsIndex) {
  1227. final cryptocoinsItem =
  1228. cryptocoins[cryptocoinsIndex];
  1229. return Text(
  1230. cryptocoinsItem,
  1231. style: FlutterFlowTheme.of(context)
  1232. .bodyMedium
  1233. .override(
  1234. font: GoogleFonts.inter(
  1235. fontWeight:
  1236. FlutterFlowTheme.of(context)
  1237. .bodyMedium
  1238. .fontWeight,
  1239. fontStyle:
  1240. FlutterFlowTheme.of(context)
  1241. .bodyMedium
  1242. .fontStyle,
  1243. ),
  1244. letterSpacing: 0.0,
  1245. fontWeight:
  1246. FlutterFlowTheme.of(context)
  1247. .bodyMedium
  1248. .fontWeight,
  1249. fontStyle:
  1250. FlutterFlowTheme.of(context)
  1251. .bodyMedium
  1252. .fontStyle,
  1253. ),
  1254. );
  1255. }),
  1256. );
  1257. },
  1258. ),
  1259. Text(
  1260. valueOrDefault<String>(
  1261. EstablishmentInfoCall.establishmentbezorgtijden(
  1262. columnEstablishmentInfoResponse.jsonBody,
  1263. ),
  1264. 'Bezorgtijden',
  1265. ),
  1266. style: FlutterFlowTheme.of(context)
  1267. .bodyMedium
  1268. .override(
  1269. font: GoogleFonts.inter(
  1270. fontWeight: FlutterFlowTheme.of(context)
  1271. .bodyMedium
  1272. .fontWeight,
  1273. fontStyle: FlutterFlowTheme.of(context)
  1274. .bodyMedium
  1275. .fontStyle,
  1276. ),
  1277. letterSpacing: 0.0,
  1278. fontWeight: FlutterFlowTheme.of(context)
  1279. .bodyMedium
  1280. .fontWeight,
  1281. fontStyle: FlutterFlowTheme.of(context)
  1282. .bodyMedium
  1283. .fontStyle,
  1284. ),
  1285. ),
  1286. Text(
  1287. valueOrDefault<String>(
  1288. EstablishmentInfoCall.establishmentBezorgkosten(
  1289. columnEstablishmentInfoResponse.jsonBody,
  1290. ),
  1291. 'bezorgkosten',
  1292. ),
  1293. style: FlutterFlowTheme.of(context)
  1294. .bodyMedium
  1295. .override(
  1296. font: GoogleFonts.inter(
  1297. fontWeight: FlutterFlowTheme.of(context)
  1298. .bodyMedium
  1299. .fontWeight,
  1300. fontStyle: FlutterFlowTheme.of(context)
  1301. .bodyMedium
  1302. .fontStyle,
  1303. ),
  1304. letterSpacing: 0.0,
  1305. fontWeight: FlutterFlowTheme.of(context)
  1306. .bodyMedium
  1307. .fontWeight,
  1308. fontStyle: FlutterFlowTheme.of(context)
  1309. .bodyMedium
  1310. .fontStyle,
  1311. ),
  1312. ),
  1313. Text(
  1314. valueOrDefault<String>(
  1315. EstablishmentInfoCall.establshmentBestellink(
  1316. columnEstablishmentInfoResponse.jsonBody,
  1317. ),
  1318. 'bestellink',
  1319. ),
  1320. style: FlutterFlowTheme.of(context)
  1321. .bodyMedium
  1322. .override(
  1323. font: GoogleFonts.inter(
  1324. fontWeight: FlutterFlowTheme.of(context)
  1325. .bodyMedium
  1326. .fontWeight,
  1327. fontStyle: FlutterFlowTheme.of(context)
  1328. .bodyMedium
  1329. .fontStyle,
  1330. ),
  1331. letterSpacing: 0.0,
  1332. fontWeight: FlutterFlowTheme.of(context)
  1333. .bodyMedium
  1334. .fontWeight,
  1335. fontStyle: FlutterFlowTheme.of(context)
  1336. .bodyMedium
  1337. .fontStyle,
  1338. ),
  1339. ),
  1340. Builder(
  1341. builder: (context) {
  1342. final afhaalopties = EstablishmentInfoCall
  1343. .establishmentAfhaalopties(
  1344. columnEstablishmentInfoResponse.jsonBody,
  1345. )?.toList() ??
  1346. [];
  1347. _model.debugGeneratorVariables[
  1348. 'afhaalopties${afhaalopties.length > 100 ? ' (first 100)' : ''}'] =
  1349. debugSerializeParam(
  1350. afhaalopties.take(100),
  1351. ParamType.String,
  1352. isList: true,
  1353. link:
  1354. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=EvenementHorecagelegenheid',
  1355. name: 'String',
  1356. nullable: false,
  1357. );
  1358. debugLogWidgetClass(_model);
  1359. return Row(
  1360. mainAxisSize: MainAxisSize.max,
  1361. children: List.generate(afhaalopties.length,
  1362. (afhaaloptiesIndex) {
  1363. final afhaaloptiesItem =
  1364. afhaalopties[afhaaloptiesIndex];
  1365. return Visibility(
  1366. visible: afhaaloptiesItem != null &&
  1367. afhaaloptiesItem != '',
  1368. child: Text(
  1369. afhaaloptiesItem,
  1370. style: FlutterFlowTheme.of(context)
  1371. .bodyMedium
  1372. .override(
  1373. font: GoogleFonts.inter(
  1374. fontWeight:
  1375. FlutterFlowTheme.of(context)
  1376. .bodyMedium
  1377. .fontWeight,
  1378. fontStyle:
  1379. FlutterFlowTheme.of(context)
  1380. .bodyMedium
  1381. .fontStyle,
  1382. ),
  1383. letterSpacing: 0.0,
  1384. fontWeight:
  1385. FlutterFlowTheme.of(context)
  1386. .bodyMedium
  1387. .fontWeight,
  1388. fontStyle:
  1389. FlutterFlowTheme.of(context)
  1390. .bodyMedium
  1391. .fontStyle,
  1392. ),
  1393. ),
  1394. );
  1395. }),
  1396. );
  1397. },
  1398. ),
  1399. Text(
  1400. valueOrDefault<String>(
  1401. EstablishmentInfoCall
  1402. .establishmentMinimaleorder(
  1403. columnEstablishmentInfoResponse.jsonBody,
  1404. ),
  1405. 'minimale order',
  1406. ),
  1407. style: FlutterFlowTheme.of(context)
  1408. .bodyMedium
  1409. .override(
  1410. font: GoogleFonts.inter(
  1411. fontWeight: FlutterFlowTheme.of(context)
  1412. .bodyMedium
  1413. .fontWeight,
  1414. fontStyle: FlutterFlowTheme.of(context)
  1415. .bodyMedium
  1416. .fontStyle,
  1417. ),
  1418. letterSpacing: 0.0,
  1419. fontWeight: FlutterFlowTheme.of(context)
  1420. .bodyMedium
  1421. .fontWeight,
  1422. fontStyle: FlutterFlowTheme.of(context)
  1423. .bodyMedium
  1424. .fontStyle,
  1425. ),
  1426. ),
  1427. Builder(
  1428. builder: (context) {
  1429. final afhaalbetaalopties = EstablishmentInfoCall
  1430. .establishmentbezorgbetaalopties(
  1431. columnEstablishmentInfoResponse.jsonBody,
  1432. )?.toList() ??
  1433. [];
  1434. _model.debugGeneratorVariables[
  1435. 'afhaalbetaalopties${afhaalbetaalopties.length > 100 ? ' (first 100)' : ''}'] =
  1436. debugSerializeParam(
  1437. afhaalbetaalopties.take(100),
  1438. ParamType.String,
  1439. isList: true,
  1440. link:
  1441. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=EvenementHorecagelegenheid',
  1442. name: 'String',
  1443. nullable: false,
  1444. );
  1445. debugLogWidgetClass(_model);
  1446. return Row(
  1447. mainAxisSize: MainAxisSize.max,
  1448. children:
  1449. List.generate(afhaalbetaalopties.length,
  1450. (afhaalbetaaloptiesIndex) {
  1451. final afhaalbetaaloptiesItem =
  1452. afhaalbetaalopties[
  1453. afhaalbetaaloptiesIndex];
  1454. return Visibility(
  1455. visible: afhaalbetaaloptiesItem != null &&
  1456. afhaalbetaaloptiesItem != '',
  1457. child: Text(
  1458. afhaalbetaaloptiesItem,
  1459. style: FlutterFlowTheme.of(context)
  1460. .bodyMedium
  1461. .override(
  1462. font: GoogleFonts.inter(
  1463. fontWeight:
  1464. FlutterFlowTheme.of(context)
  1465. .bodyMedium
  1466. .fontWeight,
  1467. fontStyle:
  1468. FlutterFlowTheme.of(context)
  1469. .bodyMedium
  1470. .fontStyle,
  1471. ),
  1472. letterSpacing: 0.0,
  1473. fontWeight:
  1474. FlutterFlowTheme.of(context)
  1475. .bodyMedium
  1476. .fontWeight,
  1477. fontStyle:
  1478. FlutterFlowTheme.of(context)
  1479. .bodyMedium
  1480. .fontStyle,
  1481. ),
  1482. ),
  1483. );
  1484. }),
  1485. );
  1486. },
  1487. ),
  1488. Builder(
  1489. builder: (context) {
  1490. final bezorgtin =
  1491. EstablishmentInfoCall.establshmentBezorgtin(
  1492. columnEstablishmentInfoResponse
  1493. .jsonBody,
  1494. )?.toList() ??
  1495. [];
  1496. _model.debugGeneratorVariables[
  1497. 'bezorgtin${bezorgtin.length > 100 ? ' (first 100)' : ''}'] =
  1498. debugSerializeParam(
  1499. bezorgtin.take(100),
  1500. ParamType.String,
  1501. isList: true,
  1502. link:
  1503. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=EvenementHorecagelegenheid',
  1504. name: 'String',
  1505. nullable: false,
  1506. );
  1507. debugLogWidgetClass(_model);
  1508. return Row(
  1509. mainAxisSize: MainAxisSize.max,
  1510. children: List.generate(bezorgtin.length,
  1511. (bezorgtinIndex) {
  1512. final bezorgtinItem =
  1513. bezorgtin[bezorgtinIndex];
  1514. return Text(
  1515. bezorgtinItem,
  1516. style: FlutterFlowTheme.of(context)
  1517. .bodyMedium
  1518. .override(
  1519. font: GoogleFonts.inter(
  1520. fontWeight:
  1521. FlutterFlowTheme.of(context)
  1522. .bodyMedium
  1523. .fontWeight,
  1524. fontStyle:
  1525. FlutterFlowTheme.of(context)
  1526. .bodyMedium
  1527. .fontStyle,
  1528. ),
  1529. letterSpacing: 0.0,
  1530. fontWeight:
  1531. FlutterFlowTheme.of(context)
  1532. .bodyMedium
  1533. .fontWeight,
  1534. fontStyle:
  1535. FlutterFlowTheme.of(context)
  1536. .bodyMedium
  1537. .fontStyle,
  1538. ),
  1539. );
  1540. }),
  1541. );
  1542. },
  1543. ),
  1544. ],
  1545. ),
  1546. ],
  1547. ),
  1548. ),
  1549. ],
  1550. ),
  1551. ),
  1552. ],
  1553. );
  1554. },
  1555. );
  1556. }
  1557. }