|
|
@@ -5,6 +5,7 @@ import '/flutter_flow/flutter_flow_widgets.dart';
|
|
|
import '/horecagelegenhedenoverzicht/horecagelegenheidoverzicht_kaart/horecagelegenheidoverzicht_kaart_widget.dart';
|
|
|
import '/shared/drawer_component/drawer_component_widget.dart';
|
|
|
import '/uitgaanspaginas/uitgaantabel_kaart/uitgaantabel_kaart_widget.dart';
|
|
|
+import 'dart:async';
|
|
|
import 'dart:ui';
|
|
|
import '/custom_code/actions/index.dart' as actions;
|
|
|
import '/index.dart';
|
|
|
@@ -797,6 +798,68 @@ class _FavorietenWidgetState extends State<FavorietenWidget>
|
|
|
),
|
|
|
),
|
|
|
),
|
|
|
+ InkWell(
|
|
|
+ splashColor: Colors.transparent,
|
|
|
+ focusColor: Colors.transparent,
|
|
|
+ hoverColor: Colors.transparent,
|
|
|
+ highlightColor: Colors.transparent,
|
|
|
+ onTap: () async {
|
|
|
+ unawaited(
|
|
|
+ () async {
|
|
|
+ await launchURL(
|
|
|
+ 'https://uitgaanskrant.com/nl/account-verwijderen');
|
|
|
+ }(),
|
|
|
+ );
|
|
|
+ },
|
|
|
+ child: Material(
|
|
|
+ color: Colors.transparent,
|
|
|
+ child: ListTile(
|
|
|
+ title: Text(
|
|
|
+ FFLocalizations.of(context).getText(
|
|
|
+ 'i31b4itp' /* Account verwijderen */,
|
|
|
+ ),
|
|
|
+ style: FlutterFlowTheme.of(context)
|
|
|
+ .titleLarge
|
|
|
+ .override(
|
|
|
+ font: GoogleFonts.interTight(
|
|
|
+ fontWeight:
|
|
|
+ FlutterFlowTheme.of(context)
|
|
|
+ .titleLarge
|
|
|
+ .fontWeight,
|
|
|
+ fontStyle:
|
|
|
+ FlutterFlowTheme.of(context)
|
|
|
+ .titleLarge
|
|
|
+ .fontStyle,
|
|
|
+ ),
|
|
|
+ letterSpacing: 0.0,
|
|
|
+ fontWeight:
|
|
|
+ FlutterFlowTheme.of(context)
|
|
|
+ .titleLarge
|
|
|
+ .fontWeight,
|
|
|
+ fontStyle:
|
|
|
+ FlutterFlowTheme.of(context)
|
|
|
+ .titleLarge
|
|
|
+ .fontStyle,
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ trailing: Icon(
|
|
|
+ Icons.arrow_forward_ios_rounded,
|
|
|
+ color: FlutterFlowTheme.of(context)
|
|
|
+ .secondaryText,
|
|
|
+ size: 24.0,
|
|
|
+ ),
|
|
|
+ tileColor: FlutterFlowTheme.of(context)
|
|
|
+ .secondaryBackground,
|
|
|
+ dense: false,
|
|
|
+ contentPadding:
|
|
|
+ EdgeInsetsDirectional.fromSTEB(
|
|
|
+ 12.0, 0.0, 12.0, 0.0),
|
|
|
+ shape: RoundedRectangleBorder(
|
|
|
+ borderRadius: BorderRadius.circular(8.0),
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ ),
|
|
|
],
|
|
|
),
|
|
|
],
|