Ver código fonte

P1-4/P1-9/P1-23/Minor-1/hartje-icoon/P1-6(8 velden): sync van FlutterFlow-export naar repo

- P1-4: horcat Default Value '17967' op HorecagelegenheidoverzichtCall
  (voorheen alleen gedocumenteerd, nu pas echt in de code-export)
- P1-9: EventCurrent titel-spacing (8px padding) + nid-debugtekst verwijderd
- P1-23: website/menukaart/facebook/twitter/instagram/bestellink op
  HorecagelegenheidCurrent kregen launchURL-tap-actie
- Minor-1: bezorgtijden-conditie gecorrigeerd naar het juiste JSON-pad
- Hartje-icoon: gevuld hartje + witte fillColor op favoriet-toggle
- P1-6 (8 velden, Component-Parameter-gebonden): nette placeholder-tekst
  i.p.v. letterlijke veldnaam op horecagelegenheidoverzicht_kaart_widget.dart
  (titel/adres/plaats) en evenement_info_widget.dart
  (adres/plaats/entreeprijs/entreetoelichting/contact)

flutter analyze: 0 errors.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
bob 4 semanas atrás
pai
commit
c268951a47

+ 4 - 4
ios/Runner.xcodeproj/project.pbxproj

@@ -44,8 +44,8 @@
 		97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
 		97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
 		97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
-		6436409D27A31CD400820AF7 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
-		6436409B27A31CDE00820AF7 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
+		6436409A27A31CDA00820AF7 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
+		6436409C27A31CD400820AF7 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
 		97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
 /* End PBXFileReference section */
 
@@ -225,8 +225,8 @@
 		6436409C27A31CD800820AF7 /* InfoPlist.strings */ = {
 			isa = PBXVariantGroup;
 			children = (
-				6436409D27A31CD400820AF7 /* nl */,
-				6436409B27A31CDE00820AF7 /* en */,
+				6436409A27A31CDA00820AF7 /* nl */,
+				6436409C27A31CD400820AF7 /* en */,
 			);
 			name = InfoPlist.strings;
 			sourceTree = "<group>";

+ 1 - 3
lib/backend/api_requests/api_calls.dart

@@ -896,12 +896,10 @@ class EvenementCall {
 
 class HorecagelegenheidoverzichtCall {
   static Future<ApiCallResponse> call({
-    String? horcat,
+    String? horcat = '17967',
     String? townid = '',
     String? displayId = 'services_1',
   }) async {
-    horcat ??= null!;
-
     return ApiManager.instance.makeApiCall(
       callName: 'Horecagelegenheidoverzicht',
       apiUrl:

+ 5 - 5
lib/evenement/evenement_info/evenement_info_widget.dart

@@ -133,7 +133,7 @@ class _EvenementInfoWidgetState extends State<EvenementInfoWidget>
                   Text(
                     valueOrDefault<String>(
                       widget!.adres,
-                      'adres',
+                      'Adres onbekend',
                     ),
                     style: FlutterFlowTheme.of(context).bodyMedium.override(
                           font: GoogleFonts.inter(
@@ -155,7 +155,7 @@ class _EvenementInfoWidgetState extends State<EvenementInfoWidget>
                   Text(
                     valueOrDefault<String>(
                       widget!.plaats,
-                      'plaats',
+                      'Plaats onbekend',
                     ),
                     style: FlutterFlowTheme.of(context).bodyMedium.override(
                           font: GoogleFonts.inter(
@@ -210,7 +210,7 @@ class _EvenementInfoWidgetState extends State<EvenementInfoWidget>
                     Text(
                       valueOrDefault<String>(
                         widget!.entreeprijs,
-                        'entreeprijs',
+                        'Prijs onbekend',
                       ),
                       style: FlutterFlowTheme.of(context).bodyMedium.override(
                             font: GoogleFonts.inter(
@@ -235,7 +235,7 @@ class _EvenementInfoWidgetState extends State<EvenementInfoWidget>
                     Text(
                       valueOrDefault<String>(
                         widget!.entreetoelichting,
-                        'entreetoelichting',
+                        'Geen toelichting',
                       ),
                       style: FlutterFlowTheme.of(context).bodyMedium.override(
                             font: GoogleFonts.inter(
@@ -292,7 +292,7 @@ class _EvenementInfoWidgetState extends State<EvenementInfoWidget>
             Text(
               valueOrDefault<String>(
                 widget!.contact,
-                'contact',
+                'Contact onbekend',
               ),
               style: FlutterFlowTheme.of(context).bodyMedium.override(
                     font: GoogleFonts.inter(

+ 29 - 45
lib/horecagelegenhedenoverzicht/event_current/event_current_widget.dart

@@ -302,37 +302,43 @@ class _EventCurrentWidgetState extends State<EventCurrentWidget>
                     mainAxisSize: MainAxisSize.max,
                     mainAxisAlignment: MainAxisAlignment.center,
                     children: [
-                      Text(
-                        valueOrDefault<String>(
-                          EvenementCall.eventTitle(
-                            eventCurrentEvenementResponse.jsonBody,
+                      Padding(
+                        padding:
+                            EdgeInsetsDirectional.fromSTEB(0.0, 0.0, 8.0, 0.0),
+                        child: Text(
+                          valueOrDefault<String>(
+                            EvenementCall.eventTitle(
+                              eventCurrentEvenementResponse.jsonBody,
+                            ),
+                            'title',
                           ),
-                          'title',
-                        ),
-                        style:
-                            FlutterFlowTheme.of(context).headlineLarge.override(
-                          font: GoogleFonts.interTight(
+                          style: FlutterFlowTheme.of(context)
+                              .headlineLarge
+                              .override(
+                            font: GoogleFonts.interTight(
+                              fontWeight: FlutterFlowTheme.of(context)
+                                  .headlineLarge
+                                  .fontWeight,
+                              fontStyle: FlutterFlowTheme.of(context)
+                                  .headlineLarge
+                                  .fontStyle,
+                            ),
+                            letterSpacing: 0.0,
                             fontWeight: FlutterFlowTheme.of(context)
                                 .headlineLarge
                                 .fontWeight,
                             fontStyle: FlutterFlowTheme.of(context)
                                 .headlineLarge
                                 .fontStyle,
+                            shadows: [
+                              Shadow(
+                                color:
+                                    FlutterFlowTheme.of(context).secondaryText,
+                                offset: Offset(2.0, 2.0),
+                                blurRadius: 2.0,
+                              )
+                            ],
                           ),
-                          letterSpacing: 0.0,
-                          fontWeight: FlutterFlowTheme.of(context)
-                              .headlineLarge
-                              .fontWeight,
-                          fontStyle: FlutterFlowTheme.of(context)
-                              .headlineLarge
-                              .fontStyle,
-                          shadows: [
-                            Shadow(
-                              color: FlutterFlowTheme.of(context).secondaryText,
-                              offset: Offset(2.0, 2.0),
-                              blurRadius: 2.0,
-                            )
-                          ],
                         ),
                       ),
                       AlignedTooltip(
@@ -395,28 +401,6 @@ class _EventCurrentWidgetState extends State<EventCurrentWidget>
                       ),
                     ],
                   ),
-                  Text(
-                    valueOrDefault<String>(
-                      widget!.nid,
-                      'nid',
-                    ),
-                    style: FlutterFlowTheme.of(context).bodyMedium.override(
-                          font: GoogleFonts.inter(
-                            fontWeight: FlutterFlowTheme.of(context)
-                                .bodyMedium
-                                .fontWeight,
-                            fontStyle: FlutterFlowTheme.of(context)
-                                .bodyMedium
-                                .fontStyle,
-                          ),
-                          letterSpacing: 0.0,
-                          fontWeight: FlutterFlowTheme.of(context)
-                              .bodyMedium
-                              .fontWeight,
-                          fontStyle:
-                              FlutterFlowTheme.of(context).bodyMedium.fontStyle,
-                        ),
-                  ),
                   Text(
                     valueOrDefault<String>(
                       EvenementCall.eventDate(

+ 202 - 124
lib/horecagelegenhedenoverzicht/horecagelegenheid_current/horecagelegenheid_current_widget.dart

@@ -364,9 +364,9 @@ class _HorecagelegenheidCurrentWidgetState
                                 return FlutterFlowIconButton(
                                   borderRadius: 8.0,
                                   buttonSize: 32.0,
-                                  fillColor: Color(0x0AFFFFFF),
+                                  fillColor: Colors.white,
                                   icon: Icon(
-                                    Icons.favorite_border,
+                                    Icons.favorite,
                                     color: Color(0xFFB50808),
                                     size: 24.0,
                                   ),
@@ -875,16 +875,38 @@ class _HorecagelegenheidCurrentWidgetState
                                                 .jsonBody,
                                           ) !=
                                           '')
-                                    Text(
-                                      getJsonField(
-                                        horecagelegenheidCurrentEstablishmentInfoResponse
-                                            .jsonBody,
-                                        r'''$[:].website''',
-                                      ).toString(),
-                                      style: FlutterFlowTheme.of(context)
-                                          .bodyMedium
-                                          .override(
-                                            font: GoogleFonts.inter(
+                                    InkWell(
+                                      splashColor: Colors.transparent,
+                                      focusColor: Colors.transparent,
+                                      hoverColor: Colors.transparent,
+                                      highlightColor: Colors.transparent,
+                                      onTap: () async {
+                                        await launchURL(getJsonField(
+                                          horecagelegenheidCurrentEstablishmentInfoResponse
+                                              .jsonBody,
+                                          r'''$[:].website''',
+                                        ).toString());
+                                      },
+                                      child: Text(
+                                        getJsonField(
+                                          horecagelegenheidCurrentEstablishmentInfoResponse
+                                              .jsonBody,
+                                          r'''$[:].website''',
+                                        ).toString(),
+                                        style: FlutterFlowTheme.of(context)
+                                            .bodyMedium
+                                            .override(
+                                              font: GoogleFonts.inter(
+                                                fontWeight:
+                                                    FlutterFlowTheme.of(context)
+                                                        .bodyMedium
+                                                        .fontWeight,
+                                                fontStyle:
+                                                    FlutterFlowTheme.of(context)
+                                                        .bodyMedium
+                                                        .fontStyle,
+                                              ),
+                                              letterSpacing: 0.0,
                                               fontWeight:
                                                   FlutterFlowTheme.of(context)
                                                       .bodyMedium
@@ -894,16 +916,7 @@ class _HorecagelegenheidCurrentWidgetState
                                                       .bodyMedium
                                                       .fontStyle,
                                             ),
-                                            letterSpacing: 0.0,
-                                            fontWeight:
-                                                FlutterFlowTheme.of(context)
-                                                    .bodyMedium
-                                                    .fontWeight,
-                                            fontStyle:
-                                                FlutterFlowTheme.of(context)
-                                                    .bodyMedium
-                                                    .fontStyle,
-                                          ),
+                                      ),
                                     ),
                                   if (EstablishmentInfoCall
                                               .establishmentMenukaart(
@@ -917,16 +930,38 @@ class _HorecagelegenheidCurrentWidgetState
                                                 .jsonBody,
                                           ) !=
                                           '')
-                                    Text(
-                                      getJsonField(
-                                        horecagelegenheidCurrentEstablishmentInfoResponse
-                                            .jsonBody,
-                                        r'''$[:].menukaart''',
-                                      ).toString(),
-                                      style: FlutterFlowTheme.of(context)
-                                          .bodyMedium
-                                          .override(
-                                            font: GoogleFonts.inter(
+                                    InkWell(
+                                      splashColor: Colors.transparent,
+                                      focusColor: Colors.transparent,
+                                      hoverColor: Colors.transparent,
+                                      highlightColor: Colors.transparent,
+                                      onTap: () async {
+                                        await launchURL(getJsonField(
+                                          horecagelegenheidCurrentEstablishmentInfoResponse
+                                              .jsonBody,
+                                          r'''$[:].menukaart''',
+                                        ).toString());
+                                      },
+                                      child: Text(
+                                        getJsonField(
+                                          horecagelegenheidCurrentEstablishmentInfoResponse
+                                              .jsonBody,
+                                          r'''$[:].menukaart''',
+                                        ).toString(),
+                                        style: FlutterFlowTheme.of(context)
+                                            .bodyMedium
+                                            .override(
+                                              font: GoogleFonts.inter(
+                                                fontWeight:
+                                                    FlutterFlowTheme.of(context)
+                                                        .bodyMedium
+                                                        .fontWeight,
+                                                fontStyle:
+                                                    FlutterFlowTheme.of(context)
+                                                        .bodyMedium
+                                                        .fontStyle,
+                                              ),
+                                              letterSpacing: 0.0,
                                               fontWeight:
                                                   FlutterFlowTheme.of(context)
                                                       .bodyMedium
@@ -936,16 +971,7 @@ class _HorecagelegenheidCurrentWidgetState
                                                       .bodyMedium
                                                       .fontStyle,
                                             ),
-                                            letterSpacing: 0.0,
-                                            fontWeight:
-                                                FlutterFlowTheme.of(context)
-                                                    .bodyMedium
-                                                    .fontWeight,
-                                            fontStyle:
-                                                FlutterFlowTheme.of(context)
-                                                    .bodyMedium
-                                                    .fontStyle,
-                                          ),
+                                      ),
                                     ),
                                   if (EstablishmentInfoCall
                                               .establishmentFacebook(
@@ -959,16 +985,38 @@ class _HorecagelegenheidCurrentWidgetState
                                                 .jsonBody,
                                           ) !=
                                           '')
-                                    Text(
-                                      getJsonField(
-                                        horecagelegenheidCurrentEstablishmentInfoResponse
-                                            .jsonBody,
-                                        r'''$[:].facebook''',
-                                      ).toString(),
-                                      style: FlutterFlowTheme.of(context)
-                                          .bodyMedium
-                                          .override(
-                                            font: GoogleFonts.inter(
+                                    InkWell(
+                                      splashColor: Colors.transparent,
+                                      focusColor: Colors.transparent,
+                                      hoverColor: Colors.transparent,
+                                      highlightColor: Colors.transparent,
+                                      onTap: () async {
+                                        await launchURL(getJsonField(
+                                          horecagelegenheidCurrentEstablishmentInfoResponse
+                                              .jsonBody,
+                                          r'''$[:].facebook''',
+                                        ).toString());
+                                      },
+                                      child: Text(
+                                        getJsonField(
+                                          horecagelegenheidCurrentEstablishmentInfoResponse
+                                              .jsonBody,
+                                          r'''$[:].facebook''',
+                                        ).toString(),
+                                        style: FlutterFlowTheme.of(context)
+                                            .bodyMedium
+                                            .override(
+                                              font: GoogleFonts.inter(
+                                                fontWeight:
+                                                    FlutterFlowTheme.of(context)
+                                                        .bodyMedium
+                                                        .fontWeight,
+                                                fontStyle:
+                                                    FlutterFlowTheme.of(context)
+                                                        .bodyMedium
+                                                        .fontStyle,
+                                              ),
+                                              letterSpacing: 0.0,
                                               fontWeight:
                                                   FlutterFlowTheme.of(context)
                                                       .bodyMedium
@@ -978,16 +1026,7 @@ class _HorecagelegenheidCurrentWidgetState
                                                       .bodyMedium
                                                       .fontStyle,
                                             ),
-                                            letterSpacing: 0.0,
-                                            fontWeight:
-                                                FlutterFlowTheme.of(context)
-                                                    .bodyMedium
-                                                    .fontWeight,
-                                            fontStyle:
-                                                FlutterFlowTheme.of(context)
-                                                    .bodyMedium
-                                                    .fontStyle,
-                                          ),
+                                      ),
                                     ),
                                   if (EstablishmentInfoCall
                                               .establishmentTwitter(
@@ -1001,16 +1040,38 @@ class _HorecagelegenheidCurrentWidgetState
                                                 .jsonBody,
                                           ) !=
                                           '')
-                                    Text(
-                                      getJsonField(
-                                        horecagelegenheidCurrentEstablishmentInfoResponse
-                                            .jsonBody,
-                                        r'''$[:].twitter''',
-                                      ).toString(),
-                                      style: FlutterFlowTheme.of(context)
-                                          .bodyMedium
-                                          .override(
-                                            font: GoogleFonts.inter(
+                                    InkWell(
+                                      splashColor: Colors.transparent,
+                                      focusColor: Colors.transparent,
+                                      hoverColor: Colors.transparent,
+                                      highlightColor: Colors.transparent,
+                                      onTap: () async {
+                                        await launchURL(getJsonField(
+                                          horecagelegenheidCurrentEstablishmentInfoResponse
+                                              .jsonBody,
+                                          r'''$[:].twitter''',
+                                        ).toString());
+                                      },
+                                      child: Text(
+                                        getJsonField(
+                                          horecagelegenheidCurrentEstablishmentInfoResponse
+                                              .jsonBody,
+                                          r'''$[:].twitter''',
+                                        ).toString(),
+                                        style: FlutterFlowTheme.of(context)
+                                            .bodyMedium
+                                            .override(
+                                              font: GoogleFonts.inter(
+                                                fontWeight:
+                                                    FlutterFlowTheme.of(context)
+                                                        .bodyMedium
+                                                        .fontWeight,
+                                                fontStyle:
+                                                    FlutterFlowTheme.of(context)
+                                                        .bodyMedium
+                                                        .fontStyle,
+                                              ),
+                                              letterSpacing: 0.0,
                                               fontWeight:
                                                   FlutterFlowTheme.of(context)
                                                       .bodyMedium
@@ -1020,16 +1081,7 @@ class _HorecagelegenheidCurrentWidgetState
                                                       .bodyMedium
                                                       .fontStyle,
                                             ),
-                                            letterSpacing: 0.0,
-                                            fontWeight:
-                                                FlutterFlowTheme.of(context)
-                                                    .bodyMedium
-                                                    .fontWeight,
-                                            fontStyle:
-                                                FlutterFlowTheme.of(context)
-                                                    .bodyMedium
-                                                    .fontStyle,
-                                          ),
+                                      ),
                                     ),
                                   if (EstablishmentInfoCall
                                               .establishmentInstagram(
@@ -1043,16 +1095,38 @@ class _HorecagelegenheidCurrentWidgetState
                                                 .jsonBody,
                                           ) !=
                                           '')
-                                    Text(
-                                      getJsonField(
-                                        horecagelegenheidCurrentEstablishmentInfoResponse
-                                            .jsonBody,
-                                        r'''$[:].instagram''',
-                                      ).toString(),
-                                      style: FlutterFlowTheme.of(context)
-                                          .bodyMedium
-                                          .override(
-                                            font: GoogleFonts.inter(
+                                    InkWell(
+                                      splashColor: Colors.transparent,
+                                      focusColor: Colors.transparent,
+                                      hoverColor: Colors.transparent,
+                                      highlightColor: Colors.transparent,
+                                      onTap: () async {
+                                        await launchURL(getJsonField(
+                                          horecagelegenheidCurrentEstablishmentInfoResponse
+                                              .jsonBody,
+                                          r'''$[:].instagram''',
+                                        ).toString());
+                                      },
+                                      child: Text(
+                                        getJsonField(
+                                          horecagelegenheidCurrentEstablishmentInfoResponse
+                                              .jsonBody,
+                                          r'''$[:].instagram''',
+                                        ).toString(),
+                                        style: FlutterFlowTheme.of(context)
+                                            .bodyMedium
+                                            .override(
+                                              font: GoogleFonts.inter(
+                                                fontWeight:
+                                                    FlutterFlowTheme.of(context)
+                                                        .bodyMedium
+                                                        .fontWeight,
+                                                fontStyle:
+                                                    FlutterFlowTheme.of(context)
+                                                        .bodyMedium
+                                                        .fontStyle,
+                                              ),
+                                              letterSpacing: 0.0,
                                               fontWeight:
                                                   FlutterFlowTheme.of(context)
                                                       .bodyMedium
@@ -1062,16 +1136,7 @@ class _HorecagelegenheidCurrentWidgetState
                                                       .bodyMedium
                                                       .fontStyle,
                                             ),
-                                            letterSpacing: 0.0,
-                                            fontWeight:
-                                                FlutterFlowTheme.of(context)
-                                                    .bodyMedium
-                                                    .fontWeight,
-                                            fontStyle:
-                                                FlutterFlowTheme.of(context)
-                                                    .bodyMedium
-                                                    .fontStyle,
-                                          ),
+                                      ),
                                     ),
                                 ],
                               ),
@@ -1120,16 +1185,38 @@ class _HorecagelegenheidCurrentWidgetState
                                                 .jsonBody,
                                           ) !=
                                           '')
-                                    Text(
-                                      getJsonField(
-                                        horecagelegenheidCurrentEstablishmentInfoResponse
-                                            .jsonBody,
-                                        r'''$[:].bestellink''',
-                                      ).toString(),
-                                      style: FlutterFlowTheme.of(context)
-                                          .bodyMedium
-                                          .override(
-                                            font: GoogleFonts.inter(
+                                    InkWell(
+                                      splashColor: Colors.transparent,
+                                      focusColor: Colors.transparent,
+                                      hoverColor: Colors.transparent,
+                                      highlightColor: Colors.transparent,
+                                      onTap: () async {
+                                        await launchURL(getJsonField(
+                                          horecagelegenheidCurrentEstablishmentInfoResponse
+                                              .jsonBody,
+                                          r'''$[:].bestellink''',
+                                        ).toString());
+                                      },
+                                      child: Text(
+                                        getJsonField(
+                                          horecagelegenheidCurrentEstablishmentInfoResponse
+                                              .jsonBody,
+                                          r'''$[:].bestellink''',
+                                        ).toString(),
+                                        style: FlutterFlowTheme.of(context)
+                                            .bodyMedium
+                                            .override(
+                                              font: GoogleFonts.inter(
+                                                fontWeight:
+                                                    FlutterFlowTheme.of(context)
+                                                        .bodyMedium
+                                                        .fontWeight,
+                                                fontStyle:
+                                                    FlutterFlowTheme.of(context)
+                                                        .bodyMedium
+                                                        .fontStyle,
+                                              ),
+                                              letterSpacing: 0.0,
                                               fontWeight:
                                                   FlutterFlowTheme.of(context)
                                                       .bodyMedium
@@ -1139,25 +1226,16 @@ class _HorecagelegenheidCurrentWidgetState
                                                       .bodyMedium
                                                       .fontStyle,
                                             ),
-                                            letterSpacing: 0.0,
-                                            fontWeight:
-                                                FlutterFlowTheme.of(context)
-                                                    .bodyMedium
-                                                    .fontWeight,
-                                            fontStyle:
-                                                FlutterFlowTheme.of(context)
-                                                    .bodyMedium
-                                                    .fontStyle,
-                                          ),
+                                      ),
                                     ),
                                   if (EstablishmentInfoCall
-                                              .establishmentOpeningstijden(
+                                              .establishmentbezorgtijden(
                                             horecagelegenheidCurrentEstablishmentInfoResponse
                                                 .jsonBody,
                                           ) !=
                                           null &&
                                       EstablishmentInfoCall
-                                              .establishmentOpeningstijden(
+                                              .establishmentbezorgtijden(
                                             horecagelegenheidCurrentEstablishmentInfoResponse
                                                 .jsonBody,
                                           ) !=

+ 3 - 3
lib/horecagelegenhedenoverzicht/horecagelegenheidoverzicht_kaart/horecagelegenheidoverzicht_kaart_widget.dart

@@ -391,7 +391,7 @@ class _HorecagelegenheidoverzichtKaartWidgetState
                       Text(
                         valueOrDefault<String>(
                           widget!.titel,
-                          ' titel',
+                          'Naam onbekend',
                         ),
                         maxLines: 2,
                         style:
@@ -416,7 +416,7 @@ class _HorecagelegenheidoverzichtKaartWidgetState
                           Text(
                             valueOrDefault<String>(
                               widget!.adres,
-                              ' adres',
+                              'Adres onbekend',
                             ),
                             style: FlutterFlowTheme.of(context)
                                 .bodyMedium
@@ -443,7 +443,7 @@ class _HorecagelegenheidoverzichtKaartWidgetState
                           Text(
                             valueOrDefault<String>(
                               widget!.plaats,
-                              ' plaats',
+                              'Plaats onbekend',
                             ),
                             style: FlutterFlowTheme.of(context)
                                 .bodyMedium