|
@@ -4,6 +4,7 @@ import '/flutter_flow/flutter_flow_util.dart';
|
|
|
import '/flutter_flow/flutter_flow_widgets.dart';
|
|
import '/flutter_flow/flutter_flow_widgets.dart';
|
|
|
import 'dart:ui';
|
|
import 'dart:ui';
|
|
|
import '/index.dart';
|
|
import '/index.dart';
|
|
|
|
|
+import 'package:aligned_tooltip/aligned_tooltip.dart';
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
import 'package:flutter_spinkit/flutter_spinkit.dart';
|
|
import 'package:flutter_spinkit/flutter_spinkit.dart';
|
|
|
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
|
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
|
@@ -1256,18 +1257,57 @@ class _DrawerComponentWidgetState extends State<DrawerComponentWidget>
|
|
|
borderRadius: BorderRadius.circular(8.0),
|
|
borderRadius: BorderRadius.circular(8.0),
|
|
|
),
|
|
),
|
|
|
),
|
|
),
|
|
|
- FlutterFlowIconButton(
|
|
|
|
|
- borderRadius: 8.0,
|
|
|
|
|
- buttonSize: 40.0,
|
|
|
|
|
- fillColor: FlutterFlowTheme.of(context).primary,
|
|
|
|
|
- icon: Icon(
|
|
|
|
|
- Icons.arrow_back,
|
|
|
|
|
- color: FlutterFlowTheme.of(context).info,
|
|
|
|
|
- size: 24.0,
|
|
|
|
|
|
|
+ AlignedTooltip(
|
|
|
|
|
+ content: Padding(
|
|
|
|
|
+ padding: EdgeInsets.all(4.0),
|
|
|
|
|
+ child: Text(
|
|
|
|
|
+ FFLocalizations.of(context).getText(
|
|
|
|
|
+ 'pj545url' /* Terug */,
|
|
|
|
|
+ ),
|
|
|
|
|
+ style:
|
|
|
|
|
+ FlutterFlowTheme.of(context).bodyLarge.override(
|
|
|
|
|
+ font: GoogleFonts.inter(
|
|
|
|
|
+ fontWeight: FlutterFlowTheme.of(context)
|
|
|
|
|
+ .bodyLarge
|
|
|
|
|
+ .fontWeight,
|
|
|
|
|
+ fontStyle: FlutterFlowTheme.of(context)
|
|
|
|
|
+ .bodyLarge
|
|
|
|
|
+ .fontStyle,
|
|
|
|
|
+ ),
|
|
|
|
|
+ letterSpacing: 0.0,
|
|
|
|
|
+ fontWeight: FlutterFlowTheme.of(context)
|
|
|
|
|
+ .bodyLarge
|
|
|
|
|
+ .fontWeight,
|
|
|
|
|
+ fontStyle: FlutterFlowTheme.of(context)
|
|
|
|
|
+ .bodyLarge
|
|
|
|
|
+ .fontStyle,
|
|
|
|
|
+ ),
|
|
|
|
|
+ ),
|
|
|
|
|
+ ),
|
|
|
|
|
+ offset: 4.0,
|
|
|
|
|
+ preferredDirection: AxisDirection.down,
|
|
|
|
|
+ borderRadius: BorderRadius.circular(8.0),
|
|
|
|
|
+ backgroundColor:
|
|
|
|
|
+ FlutterFlowTheme.of(context).secondaryBackground,
|
|
|
|
|
+ elevation: 4.0,
|
|
|
|
|
+ tailBaseWidth: 24.0,
|
|
|
|
|
+ tailLength: 12.0,
|
|
|
|
|
+ waitDuration: Duration(milliseconds: 100),
|
|
|
|
|
+ showDuration: Duration(milliseconds: 1500),
|
|
|
|
|
+ triggerMode: TooltipTriggerMode.tap,
|
|
|
|
|
+ child: FlutterFlowIconButton(
|
|
|
|
|
+ borderRadius: 8.0,
|
|
|
|
|
+ buttonSize: 40.0,
|
|
|
|
|
+ fillColor: FlutterFlowTheme.of(context).primary,
|
|
|
|
|
+ icon: Icon(
|
|
|
|
|
+ Icons.arrow_back,
|
|
|
|
|
+ color: FlutterFlowTheme.of(context).info,
|
|
|
|
|
+ size: 24.0,
|
|
|
|
|
+ ),
|
|
|
|
|
+ onPressed: () async {
|
|
|
|
|
+ Navigator.pop(context);
|
|
|
|
|
+ },
|
|
|
),
|
|
),
|
|
|
- onPressed: () async {
|
|
|
|
|
- Navigator.pop(context);
|
|
|
|
|
- },
|
|
|
|
|
),
|
|
),
|
|
|
Text(
|
|
Text(
|
|
|
FFLocalizations.of(context).getText(
|
|
FFLocalizations.of(context).getText(
|